-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "transit-immutable-js",
"version": "0.8.0",
"description": "Transit serialisation for Immutable.js",
"main": "index.js",
"scripts": {
"test:3": "npm install --no-save immutable@^3.7.4 && mocha",
"test:4": "npm install --no-save immutable@^4.0.0-rc.12 && mocha",
"test": "npm run test:3 && npm run test:4",
"lint": "eslint .",
"coverage": "nyc npm test && nyc report --reporter=lcov --reporter=json"
},
"repository": {
"type": "git",
"url": "https://github.com/glenjamin/transit-immutable-js.git"
},
"author": "Glen Mailer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glenjamin/transit-immutable-js/issues"
},
"homepage": "https://github.com/glenjamin/transit-immutable-js",
"peerDependencies": {
"immutable": ">= 3",
"transit-js": ">= 0.8"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-immutable": "^1.2.0",
"coveralls": "^2.11.2",
"eslint": "^0.24.1",
"immutable": ">=3.7.4",
"mocha": "^2.2.5",
"nyc": "^14.1.1",
"transit-js": "^0.8.807"
}
}