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",
|
2019-01-15 15:40:13 +08:00
|
|
|
"mocha": "^5.2.0"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2019-01-15 15:51:28 +08:00
|
|
|
"start": "node index.js",
|
|
|
|
"test": "mocha ./tests --recursive"
|
2019-01-15 15:40:13 +08:00
|
|
|
}
|
|
|
|
}
|