-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@eclipse-velocitas/velocitas-project-generator",
"version": "3.0.1",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-velocitas/velocitas-project-generator-npm.git"
},
"description": "Project Generator for Velocitas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "mocha --timeout 10000 --reporter spec --require ts-node/register src/**/*.test.ts",
"coverage": "nyc --reporter=cobertura npm run test"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^9.1.1",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^0.28.1",
"buffer": "^6.0.3",
"http-status-codes": "^2.3.0"
}
}