-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "generator-alfresco",
"version": "0.9.29",
"description": "Yeoman generator",
"license": "Apache-2.0",
"main": "app/index.js",
"repository": "binduwavell/generator-alfresco",
"author": {
"name": "Bindu Wavell",
"email": "[email protected]",
"url": "https://github.com/binduwavell"
},
"engines": {
"node": ">=4.0.0"
},
"files": [
"generators"
],
"keywords": [
"alfresco",
"all-in-one",
"generator",
"yeoman",
"yeoman-generator"
],
"dependencies": {
"adm-zip": "0.4.7",
"ascii-table": "0.0.9",
"chalk": "2.4.0",
"debug": "3.1.0",
"generator-alfresco-common": "0.9.26",
"lodash": "4.17.5",
"mem-fs-editor": "4.0.0",
"rmdir": "1.2.0",
"semver": "5.5.0",
"slash": "2.0.0",
"yeoman-generator": "2.0.4",
"yosay": "2.0.2"
},
"devDependencies": {
"codecov": "3.0.0",
"coveralls": "3.0.0",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1",
"fixme": "0.4.5",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mem-fs": "1.1.3",
"mocha": "5.1.1",
"mocha-eslint": "4.1.0",
"mocha-lcov-reporter": "1.3.0",
"npm-check-updates": "2.14.1",
"strip-ansi": "4.0.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "1.7.0"
},
"config": {},
"scripts": {
"eslint": "eslint generators test || echo DONE",
"fixme": "node -e \"require('fixme')()\"",
"ncu": "ncu",
"ncu:upgrade": "ncu -u",
"precommit": "eslint generators test",
"test": "mocha --reporter spec test",
"test:one": "mocha --reporter spec",
"test:watch": "mocha --reporter spec --watch test",
"test:watchone": "mocha --reporter spec --watch",
"howto-cover-local": "echo 'Place a repo_token: entry with the project secret from the coveralls dashboard into .coveralls.yml' ; echo 'WARNING: do not commit this secret!!!'",
"cover": "istanbul cover _mocha -- --report spec test ; node -e \"require('fixme')()\"",
"coveralls": "istanbul cover _mocha -- --report spec test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"codecov": "istanbul cover _mocha -- --report spec test && codecov && rm -rf ./coverage"
}
}