-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "es6-lib-starter-light",
"description": "A light starter for a Node ES6 library.",
"version": "1.0.3",
"main": "./lib/library.js",
"devDependencies": {
"babel-cli": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.2.0",
"mocha": "^2.2.5"
},
"scripts": {
"build": "babel src --out-dir lib",
"build-test-es5": "npm run build && babel test --out-dir test-es5 && sed -i 's/\\/src\\//\\/lib\\//' test-es5/*.js",
"watch": "babel src --out-dir lib --watch",
"test": "mocha --ui tdd --compilers js:babel-register",
"test-es5": "mocha --ui tdd test-es5",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"es6",
"npm",
"starter",
"library",
"boilerplate",
"babel",
"light"
],
"author": {
"name": "Liad Yosef",
"url": "https://github.com/liady"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liady/es6-lib-starter-light"
}
}