forked from datapunkz/cicd-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 936 Bytes
/
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
{
"name": "nodejs-circleci",
"version": "0.0.1",
"description": "nodejs-circleci",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node app.js",
"test": "mocha",
"test-ci": "mocha --reporter mocha-junit-reporter",
"flaky-test": "mocha --reporter mocha-junit-reporter \"flaky-test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/punkdata/nodejs-circleci.git"
},
"author": "Angel Rivera",
"license": "ISC",
"bugs": {
"url": "https://github.com/punkdata/nodejs-circleci/issues"
},
"homepage": "https://github.com/punkdata/nodejs-circleci.git#readme",
"dependencies": {
"axios": "^0.26.0",
"ejs": "^3.1.7",
"eslint": "^8.33.0",
"express": "^4.16.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.2",
"eslint-utils": "^1.4.0",
"mocha": "^9.2.1",
"mocha-junit-reporter": "^2.0.2"
}
}