forked from Cognizant-CDE-Australia/generator-confit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
146 lines (146 loc) · 5.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "generator-confit",
"version": "0.0.0-semantically-released",
"description": "Yeoman generator for creating the development process, tools and a sample project for current-generation web applications",
"keywords": [
"build-system",
"webpack",
"yeoman",
"yeoman-generator"
],
"bugs": {
"url": "https://github.com/odecee/generator-confit/issues"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Brett Uglow",
"email": "buglow@odecee.com.au",
"url": "https://github.com/uglow"
},
{
"name": "Michael Richardson",
"email": "michael@mjrichardson.com.au",
"url": "https://github.com/mikrich"
},
{
"name": "Tim Weightman",
"email": "tweightman@odecee.com.au"
},
{
"name": "Keren Burshtein",
"email": "kburshtein@odecee.com.au"
},
{
"name": "Antoine Savignac",
"email": "asavignac@odecee.com.au"
}
],
"files": [
"buildTool",
"generators",
"lib",
"projectType",
"*.md"
],
"main": "lib/generators/app/index.js",
"repository": {
"type": "git",
"url": "https://github.com/odecee/generator-confit.git"
},
"scripts": {
"pre-release": "npm-run-all verify test:coverage updateFixtures test:int build",
"build": "cross-env NODE_ENV=production npm run clean:prod",
"check-for-updates": "node config/check-update/checkForUpdates.js",
"clean:prod": "rimraf dist/",
"commitmsg": "cz-customizable-ghooks",
"coverage": "npm-run-all test:coverage test:check-coverage",
"dev": "cross-env NODE_ENV=development npm run verify:watch",
"docs:_publish": "node config/docs/publish.js",
"predocs:build": "rimraf website/",
"docs:build": "cross-env NODE_ENV=production webpack --progress --config config/docs/swanky.webpack.config.js --colors",
"docs:build:serve": "npm-run-all docs:build docs:serve",
"docs:clean": "rimraf website/",
"docs:dev": "cross-env NODE_ENV=development node config/docs/serve.dev.js",
"docs:postpublish": "node config/docs/postpublish.js",
"docs:prepublish": "node config/docs/prepublish.js",
"docs:publish": "npm-run-all docs:prepublish docs:clean docs:build docs:_publish docs:postpublish",
"docs:serve": "http-server website/ -o",
"precommit": "exact-semver",
"prepush": "npm-run-all verify test:coverage --silent",
"semantic-release": "semantic-release pre && npm publish && semantic-release post && npm run docs:publish",
"start": "npm run dev",
"test": "npm-run-all updateFixtures test:unit:once test:int",
"test:check-coverage": "cross-env NODE_ENV=test istanbul check-coverage reports/coverage/coverage.json --config config/testUnit/istanbul.js",
"test:coverage": "npm-run-all test:unit:once test:check-coverage --silent",
"test:int": "node test/testRunner.js --sequence --MAX_LOG=true",
"test:unit": "chokidar 'lib/**/*.js' 'test/**/*.js' -c 'npm run test:unit:once' --initial --silent",
"test:unit:once": "cross-env NODE_ENV=test istanbul cover --config config/testUnit/istanbul.js _mocha -- --opts config/testUnit/mocha.opts",
"updateFixtures": "node test/updateFixtures.js",
"upload-coverage": "cat reports/coverage/lcov/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"verify": "npm run verify:js --silent",
"verify:js": "eslint -c config/verify/.eslintrc \"lib/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js success",
"verify:js:fix": "eslint --fix -c config/verify/.eslintrc \"lib/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js:fix success",
"verify:js:watch": "chokidar 'lib/**/*.js' 'test/**/*.js' 'config/**/*.js' -c 'npm run verify:js:fix' --initial --silent",
"verify:watch": "npm run verify:js:watch --silent"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/release/commitMessageConfig.js"
}
},
"dependencies": {
"chalk": "1.1.3",
"ejs": "2.5.6",
"fs-extra": "2.1.2",
"hash-files": "1.1.1",
"inquirer": "1.1.3",
"js-yaml": "3.6.1",
"lodash": "4.15.0",
"lodash-deep": "2.0.0",
"parse-repo": "1.0.1",
"sort-keys": "1.1.2",
"yeoman-generator": "0.24.1",
"sort-package-json": "1.6.1",
"spdx-license-list": "3.0.0",
"update-notifier": "2.1.0"
},
"devDependencies": {
"async": "1.5.2",
"chokidar-cli": "1.2.0",
"coveralls": "2.11.15",
"cross-env": "3.1.4",
"cz-customizable": "4.0.0",
"cz-customizable-ghooks": "1.5.0",
"eslint": "3.14.1",
"eslint-config-google": "0.7.1",
"eslint-plugin-node": "3.0.5",
"exact-semver": "1.2.0",
"freeport": "1.0.5",
"gh-pages": "0.12.0",
"highlightjs": "9.8.0",
"http-server": "0.9.0",
"husky": "0.13.1",
"istanbul": "0.4.5",
"latest-version": "2.0.0",
"mocha": "3.2.0",
"npm-check-updates": "2.8.9",
"npm-module-checklist": "1.6.0",
"npm-run-all": "4.0.1",
"postcss": "5.0.21",
"rimraf": "2.5.4",
"semantic-release": "6.3.2",
"swanky": "2.5.0",
"swanky-processor-ngdocs": "2.2.3",
"webpack": "2.2.0",
"yeoman-assert": "3.0.0",
"yeoman-test": "1.6.0"
},
"engines": {
"node": ">=4.x",
"npm": ">=3.9.5"
}
}