-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 934 Bytes
/
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
{
"name": "std-tracker",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"options": {
"mocha": "--compilers js:babel-core/register"
},
"scripts": {
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run compile && npm run testonly",
"test-watch": "npm run testonly -- --watch",
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile",
"watch": "babel --watch --presets es2015,stage-0 -d lib/ src/",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-watch": "^1.0.2",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.2.0",
"mocha": "^2.4.5"
}
}