2019-01-15 15:40:13 +08:00
|
|
|
{
|
|
|
|
"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",
|
2019-01-15 15:51:28 +08:00
|
|
|
"chai-http": "^4.2.1",
|
2020-04-25 07:02:34 +08:00
|
|
|
"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",
|
2019-01-15 15:40:13 +08:00
|
|
|
"mocha": "^5.2.0"
|
|
|
|
},
|
2020-04-25 07:02:34 +08:00
|
|
|
"resolutions": {
|
|
|
|
"minimist": "^1.2.3"
|
|
|
|
},
|
2019-01-15 15:40:13 +08:00
|
|
|
"scripts": {
|
2019-01-15 15:51:28 +08:00
|
|
|
"start": "node index.js",
|
2020-04-25 07:02:34 +08:00
|
|
|
"test": "mocha ./tests --recursive",
|
|
|
|
"lint": "eslint ."
|
2019-01-15 15:40:13 +08:00
|
|
|
}
|
|
|
|
}
|