-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.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
{
"name": "crudux",
"version": "1.2.0",
"description": "A redux library for managing CRUD state.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/SpinGo/crudux"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\"",
"test:watch": "npm test -- --watch"
},
"author": "SpinGo - Matt Polichette",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4",
"normalizr": "^3.1.0",
"query-string": "^4.3.1",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.20.2",
"flux-standard-action": "^1.1.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0"
}
}