-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 935 Bytes
/
package.json
File metadata and controls
39 lines (39 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
35
36
37
38
39
{
"name": "code-strip",
"version": "1.0.11",
"description": "A node module that strips out compiler defines in code.",
"main": "./lib/index.js",
"directories": { "bin": "./bin" },
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/Comiccobe/code-strip.git"
},
"keywords": [
"directives",
"defines",
"codestrip"
],
"author": "Jakob Hillerström <zurric@gmail.com> (http://j.akob.se/)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Comiccobe/code-strip/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/Comiccobe/code-strip/issues"
},
"homepage": "https://github.com/Comiccobe/code-strip",
"bin": { "code-strip": "./bin/code-strip" },
"dependencies": {
"nopt": "^3.0.1"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mocha-jshint": "0.0.9"
}
}