This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "extendable-immutable",
"version": "1.3.3",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"description": "Wraps around Immutable.js to turn it inheritable",
"scripts": {
"perf": "node scripts/bench.js",
"test": "BABEL_ENV=commonjs mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch",
"test:cov": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"clean": "rm -rf lib es",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build": "npm run build:commonjs && npm run build:es",
"prepublish": "npm run clean && npm run build",
"preversion": "npm run clean && npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "Phil Plückthun <[email protected]> (https://github.com/philpl)",
"bugs": {
"url": "https://github.com/philplckthun/extendable-immutable/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philpl/extendable-immutable.git"
},
"license": "CC0-1.0",
"keywords": [
"immutable",
"extendable",
"inheritable",
"map",
"list",
"data"
],
"dependencies": {
"invariant": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-philpl": "^0.5.0",
"babel-register": "^6.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.6.1",
"eslint-config-excellence": "^1.17.0",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.20.2",
"glob": "^7.1.0",
"immutable": "4.0.0-rc.2",
"mocha": "^3.1.0",
"nyc": "^10.0.0",
"pretty-time": "^0.2.0"
},
"peerDependencies": {
"immutable": ">= 3.8.1"
},
"engines": {
"node": ">= 0.12.0"
}
}