-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "entman",
"version": "1.0.0",
"description": "A manager of normalizr entities for Redux",
"author": "Lorenzo Ruiz <lars.bs@hotmail.com>",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib/ dist/",
"karma": "NODE_ENV=test rimraf coverage/ && karma start --single-run --browsers PhantomJS",
"karma-watch": "NODE_ENV=test karma start",
"build:umd": "webpack --progress",
"build:commonjs": "babel src --out-dir lib/",
"build": "npm run clean && npm run build:umd && npm run build:commonjs",
"test": "NODE_ENV=test npm run build && npm run karma",
"start": "npm run karma-watch",
"prepublish": "npm run build && npm run karma"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Drawbotics/entman.git"
},
"peerDependencies": {
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"deep-freeze": "0.0.1",
"eslint": "^3.3.1",
"eslint-loader": "^1.5.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.5.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "2.1.14",
"redux": "^3.5.2",
"rimraf": "^2.5.4",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.3.0"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"entman-denormalizr": "0.7.2",
"lodash": "^4.15.0",
"normalizr": "^3.2.1",
"redux-batched-actions": "^0.1.5",
"uuid": "^3.0.1"
}
}