-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "vulpes-client",
"version": "0.2.0",
"description": "JavaScript job worker client for the Vulpes platform",
"main": "source/index.js",
"scripts": {
"build": "babel source -d dist",
"docs": "jsdoc2md source/**/*.js > API.md",
"test": "npm run test:all",
"test:all": "concurrently -k -n 'server,tests' -s first 'npm run test:server' 'sleep 2 && npm run test:specs'",
"test:server": "node test/server.js",
"test:specs": "mocha -r test/index.js 'test/specs/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/vulpes-client.git"
},
"keywords": [
"vulpes",
"api",
"client",
"job",
"worker"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/vulpes-client/issues"
},
"homepage": "https://github.com/Kiosked/vulpes-client#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-async-to-generator": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^6.1.1",
"sinon": "^7.3.1",
"vulpes-api": "^0.4.0"
},
"dependencies": {
"cowl": "^0.2.0",
"delayable-setinterval": "^0.1.0",
"ms": "^2.1.1",
"url-join": "^4.0.0",
"uuid": "^3.3.2",
"verror": "^1.10.0",
"vulpes": "^0.23.0"
}
}