-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 991 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
35
36
37
38
39
40
{
"name": "juicr.js",
"version": "1.1.1",
"scripts": {
"test": "mocha",
"build": "babel src -d lib; uglifyjs lib/juicr.js -o lib/juicr.min.js -c -m; gzip < lib/juicr.min.js > lib/juicr.min.js.gz;"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"chai": "^4.2.0",
"mocha": "^6.1.4"
},
"description": "A simple (and tiny ~1kb) redux inspired reducer for handling state, actions, reactions etc.",
"license": "MIT",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/alexfoxy/juicr.js.git"
},
"main": "lib/juicr.min.js",
"keywords": [
"redux",
"reducer",
"store",
"simple",
"flux",
"react",
"javascript"
],
"bugs": {
"url": "https://github.com/alexfoxy/juicr.js/issues"
},
"homepage": "https://github.com/alexfoxy/juicr.js#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}