This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 2.29 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
{
"name": "generator-ng2-alfresco-component",
"version": "1.9.0",
"description": "Yeoman generator generating angular 2 Alfresco component",
"homepage": "https://github.com/Alfresco/generator-ng2-alfresco-component",
"author": "Alfresco Software, Ltd.",
"contributors": [
{
"name": "Eugenio Romano",
"email": "[email protected]"
},
{
"name": "Denys Vuika",
"email": "[email protected]"
},
{
"name": "Mario Romano",
"email": "[email protected]"
}
],
"files": [
"app"
],
"main": "app/index.js",
"keywords": [
"ng2",
"angular2",
"component",
"generator",
"boilerplate",
"scaffolding",
"yeoman-generator",
"custom-component"
],
"dependencies": {
"alfresco-logo": "1.0.1",
"generator-license": "3.0.0",
"github-username": "2.0.0",
"lodash": "4.6.1",
"mkdirp": "0.5.1",
"yeoman-generator": "0.22.0"
},
"devDependencies": {
"browserstack-local": "1.3.0",
"eslint": "2.1.0",
"eslint-config-xo-space": "0.10.0",
"gulp": "3.9.0",
"gulp-eslint": "2.0.0",
"gulp-exclude-gitignore": "1.0.0",
"gulp-line-ending-corrector": "1.0.1",
"gulp-istanbul": "0.10.3",
"gulp-mocha": "2.0.0",
"gulp-plumber": "1.0.0",
"mocha": "2.2.3",
"mockery": "1.4.0",
"protractor": "5.1.1",
"rimraf": "2.5.2",
"yeoman-assert": "2.0.0",
"yeoman-test": "1.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/generator-ng2-alfresco-component.git"
},
"scripts": {
"clean": "rimraf node_modules typings",
"test": "gulp ",
"test-generation-component": "rimraf temp && gulp generation-component-test",
"test-install-component-dependencies": "cd temp/component-test && npm install && cd -",
"test-install-demo-component-dependencies": "cd temp/component-test/demo && npm install && cd -",
"test-build-component": "cd temp/component-test && npm run build && cd -",
"test-cross-browsers": "cd temp/component-test/demo && npm run start & npm run protractor-test",
"coveralls": "gulp coveralls",
"protractor-test": "./node_modules/.bin/protractor test/conf/local.conf.js"
},
"license": "MIT"
}