-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.06 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
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
{
"name": "react-iflow",
"version": "1.0.0-alpha.29",
"description": "The connector for react and iFlow state management.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"files": [
"dist",
"lib",
"utils"
],
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"test:cover:travis": "npm run test:cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build:clean": "rimraf dist",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c -o dist/cjs/index.js",
"build:es": "cross-env NODE_ENV=es rollup -c -o dist/es/index.js",
"build:umd": "cross-env NODE_ENV=umd rollup -c -o dist/umd/index.js",
"build": "yarn build:clean && yarn build:cjs && yarn build:es && yarn build:umd",
"release": "babel lib -d build/lib && babel utils -d build/utils"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/react-iflow.git"
},
"keywords": [
"react",
"state management",
"iFlow"
],
"author": {
"name": "unadlib",
"email": "unadlib@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/react-iflow/issues"
},
"homepage": "https://github.com/unadlib/react-iflow#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.0.4",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.3.2"
},
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"iflow": "^1.0.0-alpha.38",
"prop-types": "^15.6.0",
"react": "^16.2.0"
}
}