-
Notifications
You must be signed in to change notification settings - Fork 195
/
package.json
53 lines (53 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "seamless-immutable",
"version": "7.1.4",
"description": "Immutable data structures for JavaScript which are backwards-compatible with normal JS Arrays and Objects.",
"main": "src/seamless-immutable.js",
"browser": "seamless-immutable.development.js",
"react-native": "src/seamless-immutable.js",
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.8",
"deep-equal": "1.0.1",
"envify": "3.4.0",
"grunt": "1.0.2",
"grunt-contrib-uglify": "0.11.1",
"grunt-mocha-test": "0.12.7",
"istanbul": "0.4.2",
"jscheck": "0.2.0",
"jshint": "2.9.5",
"lodash": "3.10.1",
"mocha": "2.4.5",
"mocha-istanbul": "0.2.0",
"mocha-lcov-reporter": "1.2.0",
"react": "^15.0.1",
"zuul": "3.11.1"
},
"scripts": {
"test": "grunt",
"test-watch": "mocha --watch test/*.spec.js",
"jshint": "jshint seamless-immutable.development.js",
"coverage": "export ISTANBUL_REPORTERS=text-summary,html,lcov && rm -rf tmp/ && rm -rf html-report/ && istanbul instrument test/ -o tmp/ && mocha --reporter mocha-istanbul tmp/*.spec.js && echo Open html-report/index.html to view results as HTML.",
"zuul-local": "zuul --local -- test/*.spec.js",
"travis-test": "npm run jshint && npm test && npm run coveralls",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/rtfeldman/seamless-immutable.git"
},
"keywords": [
"immutable"
],
"author": "Richard Feldman",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rtfeldman/seamless-immutable/issues"
},
"jshintConfig": {
"newcap": false,
"validthis": true,
"proto": true
},
"homepage": "https://github.com/rtfeldman/seamless-immutable"
}