-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "cancel-source",
"version": "0.0.0",
"description": "Cancel asynchronous operations",
"main": "dist/cancel-source.js",
"jsnext:main": "dist/cancel-source.module.js",
"module": "dist/cancel-source.module.js",
"files": [
"dist",
"README.md"
],
"keywords": [],
"scripts": {
"lint": "eslint src test",
"test": "karma start --single-run --browsers ChromeHeadless",
"clean": "rimraf build dist",
"build": "rollup --config",
"report-coverage": "codecov",
"commitmsg": "validate-commit-msg",
"release": "standard-version"
},
"config": {
"validate-commit-msg": {
"helpMessage": "See README for guidelines",
"autoFix": true
}
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"dependencies": {},
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.24.1",
"codecov": "^3.5.0",
"eslint": "^3.19.0",
"eslint-plugin-jasmine": "^2.10.1",
"husky": "^0.13.4",
"jasmine": "^2.99.0",
"jasmine-core": "^2.99.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.2",
"karma-rollup-preprocessor": "^3.0.3",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"rimraf": "^2.6.3",
"rollup": "^0.40.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-node-resolve": "^2.0.0",
"standard-version": "^6.0.1",
"validate-commit-msg": "^2.12.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jsalis/cancel-source.git"
},
"author": "jsalis <johnsalis@live.com>",
"license": "MIT"
}