-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.29 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
48
49
50
51
52
{
"name": "small-redux",
"version": "1.0.0",
"description": "Small implementation of Redux library",
"main": "./es5/index.js",
"module": "./es5-esm/index.js",
"types": "./es2015/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "tslint ./src/*.ts",
"build": "tsc",
"build:es5": "tsc --target es5 --outDir ./es5-esm",
"build:umd": "rollup -c",
"build:all": "npm run build && npm run build:es5 && npm run build:umd",
"minify": "uglifyjs ./es5/index.js -c -m -o ./es5/redux.min.js",
"prepublish": "npm run lint && npm run build:all && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m18ru/small-redux.git"
},
"keywords": [
"small",
"lite",
"redux",
"reducer",
"state",
"predictable",
"functional",
"immutable",
"hot",
"live",
"replay",
"flux",
"elm",
"typescript",
"ts",
"types"
],
"author": "Andrey Avol Volynkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m18ru/small-redux/issues"
},
"homepage": "https://github.com/m18ru/small-redux#readme",
"devDependencies": {
"rollup": "^0.41.6",
"tslint": "^5.1.0",
"typescript": "^2.2.2",
"uglify-js": "^2.8.22"
}
}