-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "toolscript",
"version": "0.1.21",
"description": "tool-js-package js",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha --compilers js:babel-core/register",
"build": "babel src -d lib",
"prepublish": "npm run build",
"lint": "eslint --fix src; exit 0",
"update": "sh ./tasks/update.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlenQi/toolscript.git"
},
"keywords": [
"tool",
"js"
],
"author": "alenqi",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlenQi/toolscript/issues"
},
"homepage": "https://github.com/AlenQi/toolscript#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.7.1",
"mocha": "^3.4.2"
},
"dependencies": {
"babel-polyfill": "^6.23.0",
"mkdirp": "^0.5.1",
"request": "^2.81.0"
}
}