-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 942 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
35
36
37
38
39
40
41
42
43
44
{
"name": "spassr",
"version": "2.6.0",
"main": "src/spassr.js",
"bin": {
"spassr": "src/cli.js"
},
"scripts": {
"build": "tsc && documentation readme src/spassr.js -s API && node ./postBuild",
"test": "ava"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"commander": "^6",
"configent": "^2.2.0",
"express": "^4.17.1",
"tossr": "^1.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roxiness/spassr.git"
},
"bugs": {
"url": "https://github.com/roxiness/spassr/issues"
},
"homepage": "https://github.com/roxiness/spassr#readme",
"description": "",
"devDependencies": {
"ava": "^3.12.1",
"fs-extra": "^9.0.1",
"node-fetch": "^2.6.1"
},
"ava": {
"files": [
"test/specs/**",
"test/**/*.spec.*"
],
"ignoredByWatcher": [
"**/__roxi-ssr-bundle.js"
]
}
}