-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "paradux",
"version": "1.2.1",
"description": "A Redux middleware that adds uncertainty",
"main": "./build/lib.js",
"scripts": {
"release": "standard-version",
"prepublish": "npm run build",
"prebuild": "rimraf build && mkdir build",
"build": "babel index.js --out-file ./build/lib.js",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asteridux/paradux.git"
},
"author": "Antonin Januska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/asteridux/paradux/issues"
},
"homepage": "https://github.com/asteridux/paradux#readme",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.21.0",
"babel-jest": "18.0.0",
"babel-preset-env": "1.1.8",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"jest": "18.1.0",
"standard": "8.6.0"
},
"jest": {
"bail": true,
"collectCoverage": true,
"verbose": true
}
}