-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 935 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
{
"name": "babel-plugin-conditional-compilation",
"version": "0.0.2",
"description": "c/c++ style conditional compilation",
"repository": {
"type": "git",
"url": "github.com/herrmanno/babel-plugin-conditional-compilation"
},
"author": "herrmanno <o.herrmann92@gmail.com>",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"mocha": "^2.2.5",
"rimraf": "^2.5.1"
},
"scripts": {
"clean": "node ./build/clean.js ./lib",
"build": "node ./node_modules/babel-cli/bin/babel.js src -d lib",
"test": "mocha --compilers js:babel-core/register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"babel",
"conditional",
"compile",
"compilation",
"constant",
"babel-plugin"
]
}