-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "ss-parser",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/sikuli/ss-parser.git"
},
"description": "work in progress",
"main": "index.js",
"scripts": {
"build": "gulp",
"test": "mocha --recursive",
"cover": "istanbul cover _mocha -- --recursive",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Khalid Alharbi",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.10.2",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {
"bluebird": "^3.4.0",
"cheerio": "^0.20.0",
"decompress": "^4.0.0",
"lodash": "^4.13.1",
"rimraf": "^2.5.2"
}
}