forked from cplee/github-actions-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 705 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 705 Bytes
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
{
"name": "github-actions-demo",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:cplee/github-actions-demo.git",
"author": "Casey Lee <cplee@nektos.com>",
"license": "MIT",
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jasmine": "^4.1.1",
"mocha": "^5.2.0"
},
"resolutions": {
"minimist": "^1.2.3"
},
"scripts": {
"start": "node index.js",
"test": "mocha ./tests --recursive",
"lint": "eslint ."
}
}