This repository was archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
{
"name": "generator-bonestorm",
"version": "0.4.0",
"description": "a Yeoman generator written by boneskulls for boneskulls",
"homepage": "https://github.com/boneskull/generator-bonestorm",
"author": {
"name": "Christopher Hiller",
"email": "boneskull@boneskull.com",
"url": "https://boneskull.com"
},
"files": [
"generators",
"templates"
],
"keywords": [
"boneskull",
"yeoman-generator"
],
"dependencies": {
"awful": "^2.0.2",
"bluebird": "^3.5.0",
"figlet": "^1.2.0",
"generator-license": "^5.1.0",
"inquirer-npm-name": "^2.0.0",
"lodash": "^4.17.4",
"parse-author": "^2.0.0",
"yeoman-generator": "^2.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-bluebird": "^1.0.1",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chalk": "^2.1.0",
"eslint": "^4.7.2",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"source-map-support": "^0.4.18",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0"
},
"repository": {
"url": "https://github.com/boneskull/generator-bonestorm.git",
"type": "git"
},
"scripts": {
"build": "babel --source-maps --out-dir generators src",
"build:watch": "babel --source-maps --watch --out-dir generators src",
"prepublish": "npm run build",
"test": "eslint '*.js' src test",
"preversion": "npm test"
},
"license": "MIT"
}