-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.32 KB
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
{
"name": "x-task",
"version": "0.1.4",
"description": "Rethink async tasks with JSX and React-like way",
"main": "index.js",
"scripts": {
"build:dev": "rollup --config rollup.config.dev.js",
"build:prod": "rollup --config rollup.config.prod.js --environment production",
"build:watch": "rollup --watch --config rollup.config.dev.js",
"test": "jest",
"flow": "flow"
},
"author": "Artur Shelashskiy <a-omsk@riseup.net>",
"license": "GPL-3.0",
"dependencies": {
"lodash": "^4.17.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-omsk/x-task.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.54.1",
"jest": "^21.2.1",
"rollup": "^0.49.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0"
}
}