-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "cancel",
"description": "A JavaScript library that provides primitives for creating cancelable asynchronous operations.",
"version": "0.2.1",
"keywords": [
"cancel",
"cancellation",
"async"
],
"bugs": {
"url": "https://github.com/nickuraltsev/cancel/issues"
},
"license": "MIT",
"author": {
"name": "Nick Uraltsev",
"email": "[email protected]"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nickuraltsev/cancel.git"
},
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-register": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"mocha": "^3.2.0",
"should": "^11.2.0",
"sinon": "^1.17.7",
"should-sinon": "^0.0.5",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"babel-eslint": "7.1.1",
"rimraf": "^2.6.1"
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"test": "mocha --compilers js:babel-register",
"lint": "eslint src test"
}
}