-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.63 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
{
"name": "redux-eventually",
"version": "0.1.0",
"description": "Eventual consistency helpers for Redux apps",
"main": "lib/redux-eventually.js",
"module": "es/redux.js",
"scripts": {
"clean": "rimraf lib dist es coverage",
"lint": "eslint src test build",
"test": "cross-env NODE_ENV=development jest",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/redux-eventually.js",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/redux-eventually.js",
"build:umd":
"cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/redux-eventually.js",
"build:umd:min":
"cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/redux-eventually.min.js",
"build":
"npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Annevo/redux-eventually.git"
},
"keywords": ["redux", "eventual consistency", "crdt", "distributed frontend"],
"author": "Annevo AB",
"contributors": ["Gustav Svalander", "Adam Wendell"],
"license": "MIT",
"bugs": {
"url": "https://github.com/Annevo/redux-eventually/issues"
},
"homepage": "https://github.com/Annevo/redux-eventually#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"cross-env": "^5.1.1",
"deep-freeze": "^0.0.1",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.9"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
"<rootDir>/test/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/__mocks__/styleMock.js"
},
"setupFiles": ["<rootDir>/test/jestSetup.js"]
}
}