-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "serviser-template",
"version": "0.3.0",
"description": "",
"main": "index.js",
"bin": {
"serviser-template": "./bin/serviser-template.js"
},
"testFramework": "mocha",
"author": "fogine",
"contributors": [
"fogine"
],
"private": false,
"engines": {
"node": ">=8.0.0"
},
"license": "GPL-3.0",
"files": [
"index.js",
"bin",
"lib",
"LICENCE",
"README.md",
"COPYRIGHT",
"CHANGELOG.md"
],
"scripts": {
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec -t 30000 'test/**/*.js'",
"tests": "mocha --ui bdd --colors -t 30000 --reporter spec 'test/**/*.js'",
"test": "npm run tests"
},
"dependencies": {
"bluebird": "^3.4.6",
"inquirer": "^3.3.0",
"yargs": "^8.0.0",
"inquirer-autocomplete-prompt": "^0.11.1",
"json5": "0.5.0",
"lodash": "^4.16.2",
"mustache": "^2.3.0",
"yargs": "^8.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"istanbul": "^0.4.3",
"mocha": "^3.5.3",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"tmp": "0.0.33"
}
}