-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 877 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 877 Bytes
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
{
"name": "PROJECTNAMEHERE",
"version": "0.0.1",
"description": "DESCRIPTIONHERE",
"main": "build/index.js",
"scripts": {
"test": "mocha",
"testwatch": "mocha --watch",
"build": "babel src/index.js > build/index.js"
},
"repository": {
"type": "git",
"url": "https://GITBASEURLHERE"
},
"author": "AUTHOREMAILHERE",
"license": "LICENSEHERE",
"bugs": {
"url": "https://GITBASEURLHERE/issues"
},
"homepage": "https://GITBASEURLHERE#readme",
"dependencies": {
"babel-runtime": "^6.6.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-stage-3": "^6.5.0",
"eslint": "^2.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"mocha": "^2.4.5"
}
}