-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
42
{
"name": "alterdux",
"version": "1.0.3",
"description": "A Redux-like Redux-compatible library with some extra proof of concept features",
"main": "./build/lib.js",
"scripts": {
"release:init": "standard-version --first-release",
"release": "standard-version",
"prepublish": "npm run build",
"prebuild": "rimraf build && mkdir build",
"build": "rollup --config",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asteridux/alterdux.git"
},
"author": "Antonin Januska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/asteridux/alterdux/issues"
},
"homepage": "https://github.com/asteridux/alterdux#readme",
"devDependencies": {
"babel-core": "6.23.1",
"babel-jest": "18.0.0",
"babel-preset-env": "1.1.8",
"jest": "18.1.0",
"rimraf": "2.5.4",
"rollup": "0.41.4",
"rollup-plugin-babel": "2.7.1",
"standard": "8.6.0",
"standard-version": "4.0.0"
},
"jest": {
"bail": true,
"collectCoverage": true,
"verbose": true
},
"dependencies": {}
}