-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
104 lines (104 loc) · 3.16 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"author": "planttheidea",
"ava": {
"babel": {
"babelrc": true,
"presets": [
"react"
]
},
"failFast": true,
"files": [
"test/utils/*.js",
"test/*.js"
],
"require": [
"babel-register",
"babel-polyfill"
],
"verbose": true
},
"bugs": {
"url": "https://github.com/planttheidea/crio/issues"
},
"dependencies": {
"hash-it": "^4.0.1",
"json-stringify-safe": "^5.0.1",
"pathington": "^1.1.5",
"unchanged": "^1.3.2"
},
"description": "Immutable objects and arrays in a natural way",
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.0.1",
"eslint-config-rapid7": "~3.0.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"immutable": "^3.8.2",
"in-publish": "^2.0.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"jsdoc-babel": "^0.4.0",
"mori": "^0.3.2",
"nyc": "^12.0.2",
"optimize-js-plugin": "^0.0.4",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.6.2",
"rollup": "~0.62.0",
"rollup-plugin-babel": "~3.0.7",
"rollup-plugin-commonjs": "~9.1.3",
"rollup-plugin-node-resolve": "~3.3.0",
"rollup-plugin-uglify": "~4.0.0",
"seamless-immutable": "^7.1.3",
"sinon": "^6.1.3",
"webpack": "^4.15.1",
"webpack-cli": "~3.0.8",
"webpack-dev-server": "^3.1.4"
},
"homepage": "https://github.com/planttheidea/crio#readme",
"keywords": [
"immutable",
"crio"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"name": "crio",
"repository": {
"type": "git",
"url": "git+https://github.com/planttheidea/crio.git"
},
"scripts": {
"benchmark": "npm run transpile:lib && NODE_ENV=production node ./benchmarks/index.js",
"build": "NODE_ENV=production rollup -c",
"clean": "npm run clean:lib && npm run clean:es && npm run clean:dist",
"clean:dist": "rimraf dist",
"clean:lib": "rimraf lib",
"clean:es": "rimraf es",
"dev": "NODE_ENV=development webpack-dev-server --colors --progress --config=webpack/webpack.config.dev.js",
"dist": "npm run clean:dist && npm run build",
"lint": "NODE_ENV=test eslint src",
"lint:fix": "NODE_ENV=test eslint src --fix",
"prepublish": "if in-publish; then npm run prepublish:compile; fi",
"prepublish:compile": "npm run lint && npm run test:coverage && npm run transpile:lib && npm run transpile:es && npm run dist",
"start": "npm run dev",
"test": "NODE_PATH=. NODE_ENV=production BABEL_ENV=test ava",
"test:coverage": "nyc npm test",
"test:watch": "npm test -- --watch",
"transpile:lib": "npm run clean:lib && BABEL_ENV=lib babel src --out-dir lib",
"transpile:es": "npm run clean:es && BABEL_ENV=es babel src --out-dir es"
},
"version": "5.0.2"
}