-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
50 lines (50 loc) · 1.05 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
44
45
46
47
48
49
50
{
"name": "decomment",
"version": "0.9.5",
"description": "Removes comments from JSON/JavaScript, CSS/HTML, CPP/H, etc.",
"main": "lib/index.js",
"scripts": {
"test": "jasmine-node test",
"coverage": "istanbul cover ./node_modules/jasmine-node/bin/jasmine-node test",
"lint": "eslint ./lib ./test"
},
"files": [
"lib"
],
"homepage": "https://github.com/vitaly-t/decomment",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/decomment.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/decomment/issues",
"email": "[email protected]"
},
"keywords": [
"remove comments",
"JavaScript",
"JSON",
"CSS",
"HTML",
"CPP",
"C++",
"Text"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=6.4",
"npm": ">=2.15"
},
"dependencies": {
"esprima": "4.0.1"
},
"devDependencies": {
"eslint": "8.1.0",
"istanbul": "0.4.5",
"jasmine-node": "3.0.0"
}
}