-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
100 lines (100 loc) · 3.11 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "redux-tiles",
"version": "0.9.1",
"description": "Library to create and easily compose redux pieces together in less verbose manner",
"jsnext:main": "lib/es2015/index.js",
"module": "lib/es2015/index.js",
"typings": "lib/es2015/index.d.ts",
"main": "lib/commonjs/index.js",
"files": [
"lib",
"dist",
"src",
"README.md",
"package.json"
],
"scripts": {
"precommit": "lint-staged",
"clean": "rimraf lib dist coverage",
"prepublish": "npm run clean && npm run test && npm run build",
"build:es2015": "tsc -P tsconfig.json",
"build:es2015:watch": "tsc --watch -P tsconfig.json",
"build:commonjs": "tsc -P tsconfig.commonjs.json",
"build:umd": "cross-env NODE_ENV=development rollup -c -i lib/es2015/index.js -o dist/redux-tiles.js",
"build:umd:min": "cross-env NODE_ENV=production rollup -c -i lib/es2015/index.js -o dist/redux-tiles.min.js",
"build:dist": "npm run build:umd && npm run build:umd:min",
"build": "npm run build:es2015 && npm run build:commonjs && npm run build:dist",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn run docs:prepare && gitbook build -g bloomca/redux-tiles",
"docs:watch": "gitbook serve",
"docs:publish": "yarn run docs:clean && yarn run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:bloomca/redux-tiles gh-pages --force",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.ts": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bloomca/redux-tiles.git"
},
"keywords": [
"redux",
"abstraction",
"generator",
"actions",
"reducers",
"constants",
"modules",
"composition",
"boilerplate"
],
"author": "Seva Zaikov <seva.zaikov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bloomca/redux-tiles/issues"
},
"homepage": "https://github.com/Bloomca/redux-tiles#readme",
"devDependencies": {
"@types/redux": "^3.6.0",
"@types/sinon": "^2.2.2",
"babel-preset-es2015-rollup": "^3.0.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"delounce": "^0.3.0",
"gitbook-cli": "^2.3.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^6.0.0",
"prettier": "1.9.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^2.3.2",
"tslint": "^5.3.2",
"tslint-microsoft-contrib": "^5.0.0",
"typescript": "^2.3.3"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/test/*.(ts|tsx|js)"
]
},
"dependencies": {
"redux": "^3.6.0"
}
}