This repository has been archived by the owner on Dec 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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": "@alivenotions/simple-poll",
"version": "0.0.0-development",
"description": "Enable polling with configurable delay and implicit backpressure",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "NODE_ENV=production npm-run-all build:*",
"build:main": "copyfiles -f src/* dist -e src/*.test.js",
"build:min": "terser src/index.js src/poll.js -m -c -o dist/poll.min.js",
"build:umd": "webpack --output-filename poll.umd.js -d",
"build:umd.min": "webpack --output-filename poll.umd.min.js -p",
"commit": "git cz",
"test": "jest src/*.test.js",
"test:watch": "npm t -- -w",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"coverage": "nyc npm test",
"coverage:report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/alivenotions/simple-poll.git"
},
"author": "Bhavdeep Dhanjal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alivenotions/simple-poll/issues"
},
"keywords": [
"polling",
"pull",
"delay"
],
"files": [
"dist/*.js",
"README.md",
"example"
],
"homepage": "https://github.com/alivenotions/simple-poll#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "7.7.5",
"babel-loader": "8.0.4",
"commitizen": "3.0.5",
"copyfiles": "2.1.1",
"cz-conventional-changelog": "2.1.0",
"jest": "24.9.0",
"node-fetch": "2.6.1",
"npm-run-all": "4.1.5",
"nyc": "13.3.0",
"rimraf": "2.6.2",
"semantic-release": "^15.11.0",
"sinon": "7.1.1",
"terser": "4.4.2",
"terser-webpack-plugin": "2.2.3",
"travis-deploy-once": "^5.0.9",
"webpack": "4.25.1",
"webpack-cli": "3.1.2"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": "> 0.25%, not dead"
}