UNPKG

1.86 kBJSONView Raw
1{
2 "name": "seamless-immutable",
3 "version": "6.3.0",
4 "description": "Immutable data structures for JavaScript which are backwards-compatible with normal JS Arrays and Objects.",
5 "main": "src/seamless-immutable.js",
6 "devDependencies": {
7 "chai": "3.5.0",
8 "coveralls": "2.11.8",
9 "deep-equal": "1.0.1",
10 "envify": "3.4.0",
11 "grunt": "0.4.5",
12 "grunt-contrib-uglify": "0.11.1",
13 "grunt-mocha-test": "0.12.7",
14 "istanbul": "0.4.2",
15 "jscheck": "0.2.0",
16 "lodash": "4.15.0",
17 "mocha": "2.4.5",
18 "mocha-istanbul": "0.2.0",
19 "mocha-lcov-reporter": "1.2.0",
20 "react": "^15.0.1",
21 "zuul": "3.9.0"
22 },
23 "scripts": {
24 "test": "grunt",
25 "test-watch": "mocha --watch test/*.spec.js",
26 "jshint": "jshint seamless-immutable.development.js",
27 "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.",
28 "zuul": "zuul -- test/*.spec.js",
29 "zuul-local": "zuul --local -- test/*.spec.js",
30 "travis-test": "npm run jshint && npm test && npm run zuul && npm run coveralls",
31 "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"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/rtfeldman/seamless-immutable.git"
36 },
37 "keywords": [
38 "immutable"
39 ],
40 "author": "Richard Feldman",
41 "license": "BSD-3-Clause",
42 "bugs": {
43 "url": "https://github.com/rtfeldman/seamless-immutable/issues"
44 },
45 "jshintConfig": {
46 "newcap": false,
47 "validthis": true,
48 "proto": true
49 },
50 "homepage": "https://github.com/rtfeldman/seamless-immutable"
51}