-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 858 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
{
"name": "redux-create-state",
"version": "1.0.1",
"description": "Create new Redux state immutably",
"keywords": [
"redux",
"create",
"state",
"immutable"
],
"homepage": "https://github.com/niklasramo/redux-create-state",
"license": "MIT",
"author": {
"name": "Niklas Rämö",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:niklasramo/redux-create-state.git"
},
"main": "redux-create-state.js",
"scripts": {
"test": "ava -v",
"minify": "./node_modules/.bin/uglifyjs ./redux-create-state.js --output ./redux-create-state.min.js --comments /^!/",
"format": "find ./redux-create-state.js | xargs -I{} ./node_modules/.bin/prettier --write {}"
},
"devDependencies": {
"ava": "^0.25.0",
"prettier": "1.11.1",
"uglify-js": "^3.3.18"
}
}