-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "generator-multistack-tdd-kata",
"version": "0.0.3",
"description": "Yeoman generator to prepare TDD katas for various stack technologies.",
"license": "MIT",
"main": "app/index.js",
"repository": "[email protected]:prometheas/generator-multistack-tdd-kata.git",
"author": {
"name": "John Lianoglou",
"email": "[email protected]",
"url": "https://github.com/prometheas"
},
"contributors": [
{
"name": "Boogie",
"email": "[email protected]",
"url": "https://github.com/boogie666"
}
],
"engines": {
"node": ">=6.10"
},
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint app/*.js spec/*.js",
"reinstall": "npm run clean; npm install",
"test": "mocha"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"tdd",
"kata"
],
"dependencies": {
"chalk": "^1.0.0",
"glob": "^7.1.1",
"stringcase": "^3.2.1",
"yeoman-generator": "^0.18.10",
"yosay": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"mocha": "^3.2.0",
"shelljs": "^0.7.7"
}
}