-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
{
"name": "notification-store",
"version": "0.0.11",
"description": "A topic-based pub-sub notification system with timer support",
"keywords": [
"notification",
"pub-sub",
"isomorphic"
],
"author": "Ian Chen <[email protected]>",
"homepage": "https://github.com/IanChen83/notification-store#readme",
"license": "MIT",
"main": "index.js",
"module": "es/index.js",
"files": [
"es/",
"umd/",
"index.js",
"core.js",
"subscriber.js",
"store.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IanChen83/notification-store.git"
},
"scripts": {
"build": "node ./utils/build.js",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"clean": "node ./utils/clean.js",
"test": "jest --coverage",
"test-ci": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"bugs": {
"url": "https://github.com/IanChen83/notification-store/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.2",
"eslint": "^5.4.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^1.0.0-rc.13",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "pretty-quick --staged"
}
}
}