-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "re-create-actions",
"version": "1.1.1",
"description": "Group of utilities for creating Flux standard actions.",
"main": "dist/index.js",
"repository": "https://github.com/reactor-studio/re-create-actions",
"author": "Vedran Blazenka <[email protected]>",
"license": "MIT",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"test": "NODE_ENV=test xo && ava",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"xo": "^0.20.3"
},
"dependencies": {
"flux-standard-action": "^2.0.1",
"invariant": "^2.2.2",
"lodash": "^4.17.5"
},
"xo": {
"esnext": true,
"space": 2,
"ignores": [
"rollup.config.js"
]
}
}