-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "@shoutem/redux-sync-state-engine",
"version": "0.0.4",
"description": "Sync multiple redux stores",
"main": "build/lib/index.js",
"files": [
"build/lib"
],
"author": "Shoutem",
"scripts": {
"clean": "rimraf ./build/*",
"build": "npm run clean && npm run build-lib",
"build-lib": "babel src --out-dir build/lib --copy-files",
"test": "mocha --require babelTestSetup --reporter spec --recursive test",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- -R spec --recursive test",
"lint": "eslint src test",
"release": "npm run build && npm publish --access public --tag latest",
"release-rc": "npm run build && npm publish --access public --tag rc"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"cross-env": "^4.0.0",
"deep-freeze": "0.0.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"isparta": "^4.0.0",
"istanbul": "0.4.4",
"mocha": "^2.5.3",
"nock": "^8.2.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.4"
},
"dependencies": {
"@shoutem/deep-diff": "^1.0.0",
"lodash": "^4.17.4"
}
}