-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "redeux",
"version": "5.1.0",
"description": "Minimal unidirectional data flow utility",
"main": "index.js",
"umd": "redeux.umd.js",
"module": "redeux.mjs",
"scripts": {
"test": "standard && npm run test:node && npm run test:browser",
"test:node": "tape ./test.js | tap-format-spec",
"test:browser": "browserify ./test.js | tape-run | tap-format-spec",
"benchmark": "npm run benchmark:node && npm run benchmark:web",
"benchmark:node": "node ./benchmark/index.js",
"benchmark:web": "browserify ./benchmark/index.js > ./benchmark/bundle.js && open ./benchmark/index.html",
"umd": "browserify ./index.js --standalone redeux | uglifyjs --compress --mangle > redeux.umd.js"
},
"standard": {
"ignore": [
"*.umd.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kristoferjoseph/redeux.git"
},
"keywords": [
"data",
"minimal",
"storage",
"redux",
"flux"
],
"author": "@dam",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kristoferjoseph/redeux/issues"
},
"homepage": "https://github.com/kristoferjoseph/redeux#readme",
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"browserify": "^16.5.0",
"standard": "^11.0.1",
"tape": "^4.11.0",
"tape-run": "^4.0.0",
"uglify-js": "^3.6.9"
}
}