-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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": "json-git-redux",
"version": "0.2.0",
"description": "Official json-git bindings for Redux",
"main": "./lib/index.js",
"scripts": {
"build": "NODE_ENV=production babel --out-dir=lib --stage=0 --ignore=*Spec.js src",
"clean": "rm -rf lib",
"prepublish": "npm run clean && npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --colors --reporter=spec --timeout=10000 --recursive --sort 'src/**/*Spec.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/RobinBressan/json-git-redux.git"
},
"keywords": [
"git",
"json"
],
"author": "Robin Bressan <[email protected]> (http://github.com/RobinBressan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobinBressan/json-git-redux/issues"
},
"homepage": "https://github.com/RobinBressan/json-git-redux",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"expect": "1.20.2",
"mocha": "3.2.0"
},
"peerDependencies": {
"json-git": "~0.2.0",
"redux": "~3.6.0"
}
}