-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.93 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
{
"name": "redux-undone",
"version": "0.0.0-development",
"description": "Redo / Undo For Redux",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "https://github.com/Introvertuous/redux-undone.git"
},
"author": "Chris Ryan",
"bugs": {
"url": "https://github.com/Introvertuous/redux-undone/issues"
},
"homepage": "https://introvertuous.github.io/redux-undone",
"devDependencies": {
"@types/shelljs": "^0.8.1",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "2.1.0",
"gh-pages": "^1.2.0",
"introvertuous-configurations": "^1.6.0",
"prettier": "^1.14.2",
"redux": "4.x",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-analyzer": "^2.1.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript2": "^0.18.0",
"semantic-release": "^15.9.9",
"shelljs": "^0.8.3",
"travis-deploy-once": "^5.0.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.3"
},
"peerDependencies": {
"redux": "4.x"
},
"scripts": {
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"build": "rimraf dist && rollup -c",
"start": "rimraf dist && rollup -c -w",
"build-example": "cd example && yarn && yarn build",
"deploy-example": "gh-pages -d ./example/build",
"inject-build": "ts-node --project ./scripts/tsconfig.json ./scripts/inject-build",
"commit": "git-cz"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}