-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "generator-prototype-webapp",
"version": "0.1.0",
"description": "A yeoman generator for creating a prototype webserver base",
"scripts": {
"quality": "npm run quality:ejslint",
"quality:ejslint": "ejslint ./generators/**/*",
"test": "npm run test:mocha",
"test:mocha": "NODE_ENV=test nyc --nycrc-path ./nyc.config.js --all mocha --config tests/.mocharc.js"
},
"files": [
"generators"
],
"repository": {
"type": "git",
"url": "git+https://github.com/J4Numbers/generator-restify-webapp.git"
},
"keywords": [
"yeoman-generator"
],
"author": "Jayne Doe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/J4Numbers/generator-restify-webapp/issues"
},
"homepage": "https://github.com/J4Numbers/generator-restify-webapp#readme",
"dependencies": {
"yeoman-generator": "^4.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"ejs-lint": "^1.1.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"yeoman-test": "^3.0.0"
}
}