-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "formalist-compose",
"version": "3.1.0",
"description": "",
"homepage": "https://github.com/icelab/formalist-compose",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/icelab/formalist-compose.git"
},
"keywords": [],
"authors": [
"Max Wheeler <max@icelab.com.au> (https://github.com/makenosound)",
"Tim Riley <tim@icelab.com.au> (https://github.com/timriley)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/formalist-compose/issues"
},
"scripts": {
"build": "babel src --out-dir lib",
"watch": "nodemon --watch src --exec 'npm run build' --ext js",
"clean": "rm -rf ./lib/*",
"test": "NODE_ENV=test babel-node test | faucet",
"posttest": "npm run lint",
"lint": "eslint 'src/*.js' 'src/**/*.js' 'test/*.js' 'test/**/*.js'",
"watchlint": "nodemon --watch src --exec 'npm run lint'"
},
"devDependencies": {
"@f/is-function": "^1.1.1",
"babel-cli": "^6.6.5",
"babel-plugin-transform-define": "1.2.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"faucet": "0.0.1",
"nodemon": "^1.18.6",
"tape": "^4.5.1"
},
"dependencies": {
"component-emitter": "1.2.1",
"formalist-validation": "^1.0.0",
"immutable": "^3.7.6",
"redux": "^3.3.1",
"redux-batched-actions": "^0.1.2"
},
"engines": {
"node": ">=8.0.0"
}
}