forked from kshvmdn/crowdmark
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "crowdmark",
"version": "0.0.2",
"description": "A CLI to download all test pages from a Crowdmark page.",
"keywords": [],
"homepage": "https://github.com/kshvmdn/crowdmark#readme",
"bugs": {
"url": "https://github.com/kshvmdn/crowdmark/issues"
},
"license": "MIT",
"author": "Kashav Madan <kshvmdn@gmail.com> (http://kshvmdn.com)",
"main": "lib/index.js",
"bin": {
"crowdmark": "bin/crowdmark"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kshvmdn/crowdmark.git"
},
"scripts": {
"lint": "eslint bin/crowdmark lib",
"test": "npm run lint && mocha lib/**/*.spec.js"
},
"dependencies": {
"home-dir": "^1.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"nightmare": "^2.7.0"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"should": "^11.1.0"
},
"engines": {
"node": ">=6"
}
}