-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.64 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
{
"name": "listate",
"version": "1.0.3",
"description": "Library for listening on changes of Redux store state.",
"homepage": "https://github.com/gamtiq/listate",
"main": "dist/commonjs/listate.js",
"keywords": [
"redux",
"store",
"state",
"change",
"listen",
"listener",
"subscribe",
"subscriber",
"subscription",
"handle",
"handler",
"observe",
"observer",
"monitor",
"watch",
"watcher",
"side-effect"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "4.2.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-guard": "0.4.0",
"ink-docstrap": "1.3.2",
"jsdoc": "3.6.2",
"mocha": "6.1.4",
"redux": "4.0.4",
"uglify-js": "3.6.0",
"version-bump-prompt": "5.0.4"
},
"scripts": {
"lint": "eslint --cache --max-warnings 0 \"**/*.js\"",
"lint-error": "eslint --cache \"**/*.js\"",
"lint-all": "eslint --max-warnings 0 \"**/*.js\"",
"lint-all-error": "eslint \"**/*.js\"",
"test": "mocha --require babel-core/register \"test/**/*.js\"",
"check": "npm run lint && npm test",
"check-all": "npm run lint-all && npm test",
"doc": "jsdoc -c jsdoc-conf.json",
"build-commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir dist/commonjs --source-maps",
"build-umd": "cross-env BABEL_ENV=umd babel src --out-dir dist --source-maps",
"minify-listate": "uglifyjs dist/listate.js --output dist/listate.min.js --compress --mangle --source-map content=\"dist/listate.js.map\",url=listate.min.js.map",
"minify-extra": "uglifyjs dist/extra.js --output dist/extra.min.js --compress --mangle --source-map content=\"dist/extra.js.map\",url=extra.min.js.map",
"minify": "npm run minify-listate && npm run minify-extra",
"build": "npm run build-commonjs && npm run build-umd && npm run minify",
"all": "npm run check-all && npm run doc && npm run build",
"release": "bump patch --commit --tag --all --push package.json package-lock.json bower.json",
"release-minor": "bump minor --commit --tag --all --push package.json package-lock.json bower.json",
"release-major": "bump major --commit --tag --all --push package.json package-lock.json bower.json"
},
"author": {
"name": "Denis Sikuler"
},
"repository": {
"type": "git",
"url": "git://github.com/gamtiq/listate.git"
},
"bugs": {
"url": "https://github.com/gamtiq/listate/issues"
},
"license": "MIT",
"types": "./src/listate.d.ts"
}