-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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": "dutier",
"version": "1.1.4",
"description": "The immutable, async and universal state management solution for Javascript applications.",
"main": "dist/dutier.min.js",
"module": "dist/dutier.js",
"scripts": {
"prebuild": "npm run clean",
"build": "npm run rollup & npm run rollup:production",
"build:watch": "npm run rollup -- --watch",
"clean": "del-cli \"dist/**/*\"",
"rollup": "rollup --config",
"rollup:production": "cross-env NODE_ENV=production npm run rollup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"devtools.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/luisvinicius167/dutier.git"
},
"keywords": [
"react",
"redux",
"flux",
"easy state",
"state container",
"flux pattern"
],
"author": "Luis Vinícius <dev_luis@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luisvinicius167/dutier/issues"
},
"homepage": "https://github.com/luisvinicius167/dutier#readme",
"devDependencies": {
"babel-preset-env": "~1.4.0",
"cross-env": "~5.0.0",
"del-cli": "~1.0.0",
"rollup": "~0.41.6",
"rollup-plugin-babel": "~2.7.1",
"rollup-plugin-uglify": "~2.0.0",
"rollup-watch": "~3.2.2"
}
}