-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "macro-cc",
"version": "0.1.1",
"description": "JavaScript Conditional Compilation Macro.",
"main": "lib/main.js",
"scripts": {
"clean": "rm lib -rf",
"build": "npm run clean && babel src -d lib",
"test:coverage": "babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run build && node_modules/.bin/mocha"
},
"bin": {
"macroCC": "./bin/macroCC"
},
"keywords": [
"javascript",
"macro",
"conditional compilation"
],
"author": "shitake <z1522716486@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/molingyu/macroCC.git"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"eslint": "^4.0.0",
"mocha": "^3.4.2"
}
}