-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 926 Bytes
/
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
{
"name": "code-sniper",
"version": "0.1.3",
"description": "A clone of code sniffer (PHPCS) for javascript",
"main": "index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha test --stack-size=5000",
"cover": "node --stack-size=5000 node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glayzzle/code-sniper.git"
},
"keywords": [
"static-analysis",
"code-quality"
],
"author": "Ioan CHIRIAC",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/glayzzle/code-sniper/issues"
},
"homepage": "https://github.com/glayzzle/code-sniper#readme",
"dependencies": {
"css-selector-parser": "^1.3.0",
"php-parser": "3.0.0-alpha2"
},
"devDependencies": {
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"should": "^11.2.1"
}
}