-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "new-work",
"version": "1.2.1",
"description": "Discover when artists post new work.",
"main": "index.js",
"bin": {
"newwork": "bin/newwork.js"
},
"repository": "s3ththompson/new-work",
"scripts": {
"build:docs": "documentation readme index.js -s 'JS API'",
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"fmt": "prettier --single-quote --write \"{,!(node_modules)/**/}*.js\"",
"test": "npm run fmt && npm run deps && tape tests/index.js | tap-spec"
},
"license": "MIT",
"dependencies": {
"async": "^2.4.1",
"bel": "^5.0.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"compare-urls": "^1.0.0",
"create-html": "^3.0.0",
"date-fns": "^1.28.5",
"inquirer": "^3.0.6",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"normalize-url": "^1.9.1",
"opn": "^5.0.0",
"ora": "^1.2.0",
"request": "^2.81.0",
"text-table": "^0.2.0",
"user-home": "^2.0.0"
},
"devDependencies": {
"dependency-check": "^2.8.0",
"documentation": "^4.0.0-rc.1",
"prettier": "^1.5.2",
"tap-spec": "^4.1.1",
"tape": "^4.7.0"
}
}