-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·45 lines (45 loc) · 1.17 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
{
"name": "cowboy",
"version": "0.0.1",
"description": "Code like a cowboy",
"main": "./bin/cowboy.js",
"preferGlobal": true,
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch",
"test:coverage": "nyc npm run test",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix"
},
"bin": {
"cowboy": "./bin/cowboy.js"
},
"author": "Hendrik Prinsloo <[email protected]>",
"license": "ISC",
"dependencies": {
"command-exists": "^1.2.9",
"commander": "^9.1.0",
"express": "^4.18.1",
"file-system-cache": "^2.0.0",
"node-datetime": "^2.1.2",
"node-emoji": "^1.11.0",
"pretty-time": "^1.1.0",
"simple-json-db": "^2.0.0",
"websocket": "^1.0.34",
"ws": "^8.6.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}