forked from rtfeldman/seamless-immutable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.8 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
{
"name": "seamless-immutable",
"version": "2.4.1",
"description": "Immutable data structures for JavaScript which are backwards-compatible with normal JS Arrays and Objects.",
"main": "seamless-immutable.development.js",
"devDependencies": {
"chai": "1.9.2",
"coveralls": "2.11.2",
"envify": "3.4.0",
"grunt": "0.4.5",
"grunt-contrib-uglify": "0.8.1",
"grunt-mocha-test": "0.12.7",
"istanbul": "0.3.2",
"jscheck": "0.2.0",
"jshint": "2.5.8",
"lodash": "2.4.1",
"mocha": "2.0.1",
"mocha-istanbul": "0.2.0",
"mocha-lcov-reporter": "0.0.1",
"zuul": "1.11.2"
},
"scripts": {
"test": "mocha test/*.spec.js",
"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": "zuul -- test/*.spec.js",
"zuul-local": "zuul --local -- test/*.spec.js",
"travis-test": "npm run jshint && npm test && npm run zuul && 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": "Apache-2.0",
"bugs": {
"url": "https://github.com/rtfeldman/seamless-immutable/issues"
},
"jshintConfig": {
"newcap": false,
"validthis": true,
"proto": true
},
"homepage": "https://github.com/rtfeldman/seamless-immutable"
}