-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.78 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
{
"name": "immuter",
"version": "2.0.5",
"description": "An immutable react/redux state update helper, easily handle nested state with less code.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build": "npm run clean && run-p build:lib build:es 'build:flow -- lib' 'build:flow -- es' && git add -A",
"build:lib": "cross-env NODE_ENV=production BABEL_ENV=normal babel -d ./lib -s false -D ./src",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel -d ./es -s false -D ./src",
"build:flow": "flow-copy-source -v -i '{**/test/*.js,**/*.test.js}' src",
"clean": "rm -r ./es && rm -r ./lib",
"flow": "cross-env NODE_ENV=production BABEL_ENV=normal flow check",
"lint": "cross-env NODE_ENV=production BABEL_ENV=normal eslint src",
"test": "cross-env NODE_ENV=development BABEL_ENV=normal ava --serial",
"cover": "cross-env NODE_ENV=development BABEL_ENV=normal nyc ava"
},
"engines": {
"node": ">=4.0.0"
},
"pre-commit": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaaack/immuter.git"
},
"keywords": [
"state-less",
"immutable",
"dot-prop",
"object-path",
"react",
"redux"
],
"author": "zaaack",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaaack/immuter/issues"
},
"homepage": "https://github.com/zaaack/immuter#readme",
"devDependencies": {
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.0",
"babel-preset-stage-0": "^6.24.1",
"benchmark": "^2.1.4",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.49.1",
"flow-copy-source": "^1.1.0",
"immutable": "^3.8.1",
"npm-run-all": "^4.0.2",
"nyc": "^10.3.2",
"pre-commit": "^1.2.2",
"proxy-polyfill": "^0.1.7",
"seamless-immutable": "^7.1.2"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4",
"timm": "^1.2.5"
},
"ava": {
"files": [
"**/*.test.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
}
}