This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 547
/
package.json
87 lines (87 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
{
"name": "push.js",
"version": "1.0.12",
"description": "A compact, cross-browser solution for the Javascript Notifications API",
"main": "bin/push.min.js",
"scripts": {
"clean": "rimraf bin/",
"build": "rollup -c && uglifyjs --source-map -o bin/serviceWorker.min.js src/serviceWorker.js",
"test": "npm run build && karma start tests/karma.conf.js",
"test:chrome": "PUSHJS_TEST_BROWSER=Chrome npm run test",
"test:opera": "PUSHJS_TEST_BROWSER=Opera npm run test",
"test:firefox": "PUSHJS_TEST_BROWSER=Firefox npm run test",
"test:safari": "PUSHJS_TEST_BROWSER=Safari npm run test",
"prepublish": "npm run build",
"precommit": "lint-staged && npm run build && git add ./bin"
},
"files": [
"bin",
"*.md",
"*.png",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/Nickersoft/push.js"
},
"author": "Tyler Nickerson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nickersoft/push.js/issues"
},
"homepage": "https://github.com/Nickersoft/push.js",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"browserify": "^16.3.0",
"coveralls": "^3.0.5",
"flow-bin": "^0.103.0",
"husky": "^3.0.1",
"jasmine-core": "^3.4.0",
"js-yaml": "^3.13.1",
"karma": "^4.2.0",
"karma-browserstack-launcher": "~1.4.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"lint-staged": "^9.2.0",
"natives": "^1.1.6",
"platform": "^1.3.5",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {},
"resolutions": {
"natives": "1.1.6"
}
}