-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "@redom/store",
"version": "1.0.0",
"description": "Immutable keypath store for RE:DOM",
"main": "dist/redom-store.js",
"module": "dist/redom-store.es.js",
"scripts": {
"dev": "node watch",
"dist": "gh-pages -d dist",
"build-es": "rollup -w -m -c -f es index.js -o dist/redom-store.es.js",
"build-js": "rollup -n redom-store -w -c -f umd index.js -o dist/redom-store.js",
"preversion": "npm test",
"prepublish": "npm test",
"postpublish": "npm run dist",
"test": "tape test"
},
"author": "Juha Lindstedt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/redom/redom-store.git"
},
"bugs": {
"url": "https://github.com/redom/redom-store/issues"
},
"devDependencies": {
"gh-pages": "~2.1.1",
"rollup": "~1.20.3",
"rollup-plugin-buble": "~0.19.8",
"rollup-plugin-butternut": "~0.1.0",
"rollup-watch": "~4.3.1",
"tape": "~4.11.0"
}
}