-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.12 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
91
92
{
"name": "react-databinding",
"description": "react-databinding",
"keywords": [
"react",
"redux",
"react-redux",
"react-native",
"one-way binding",
"two-way binding"
],
"version": "1.1.1",
"author": {
"name": "melthaw",
"email": "[email protected]",
"url": "https://github.com/melthaw"
},
"bugs": {
"url": "https://github.com/melthaw/react-databinding/issues"
},
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "https://github.com/melthaw/react-databinding"
},
"main": "./dist/index.js",
"scripts": {
"lint": "eslint ./src ./test",
"test": "mocha --compilers js:babel-register './test/**/*.test.js' --require ./test/setup.js",
"build": "babel ./src --source-maps --out-dir ./dist",
"precommit": "npm run lint && npm run test"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-flow-runtime": "0.0.6",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.3.13",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.13",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-native": "^3.0.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"chai-enzyme": "^0.8.0",
"enzyme": "^2.9.1",
"eslint": "^3.13.1",
"eslint-config-canonical": "^6.0.0",
"flow-runtime": "0.0.6",
"husky": "^0.12.0",
"immutable": "^3.8.1 || ^4.0.0-rc.1",
"jsdom": "^11.1.0",
"mocha": "^3.2.0",
"mocha-react-native": "^0.6.0",
"react": "^15.5.4",
"react-dom": "^15.6.1",
"react-native": "^0.47.1",
"react-native-mock": "^0.3.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.6.1",
"redux": "^3.0.0",
"semantic-release": "^6.3.2",
"sinon": "^3.2.0"
},
"dependencies": {}
}