-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "redux-matter",
"version": "0.0.4",
"description": "Redux tools for matter.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "npm run build -- --watch",
"prepublish": "rimraf lib && npm run build",
"test": "mocha --compilers js:babel-core/register --reporter spec test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KyperTech/redux-matter.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"redux",
"matter",
"tessellate",
"kyper",
"react"
],
"author": "Kyper Digital Inc. <kyper.dev@gmail.com>",
"contributors": [
{
"name": "Scott Prue",
"email": "<sprue.dev@gmail.com>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KyperTech/redux-matter/issues"
},
"homepage": "https://github.com/KyperTech/redux-matter#readme",
"devDependencies": {
"babel-cli": "^6.3.26",
"babel-core": "^6.4.0",
"babel-eslint": "^5.0.0-beta4",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.2",
"eslint-config-airbnb": "1.0.2",
"mocha": "^2.2.5",
"rimraf": "^2.5.0"
},
"dependencies": {
"humps": "^1.0.0",
"kyper-matter": "^0.2.0",
"lodash": "^4.0.0",
"normalizr": "^1.4.0"
}
}