-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "dota2-api",
"version": "0.2.1",
"description": "Dota2 web api node.js version",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "make test-all",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/booxood/node-dota2-api.git"
},
"keywords": [
"dota2",
"web",
"api",
"steam"
],
"author": "Liucw",
"license": "MIT",
"bugs": {
"url": "https://github.com/booxood/node-dota2-api/issues"
},
"homepage": "https://github.com/booxood/node-dota2-api",
"dependencies": {
"es6-object-assign": "^1.0.1",
"es6-promise": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"lodash.pick": "^4.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"istanbul": "0.4.3",
"mocha": "^2.0.1",
"should": "^4.2.1"
}
}