forked from johncar/al_ui_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.56 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
{
"name": "AL-UI-Template",
"homepage": "https://github.com/alertlogic/al_ui_template",
"author": "Barry Skidmore <[email protected]>",
"description": "Base framework for Cloud Insight UI Development.",
"bugs": {
"url": "https://algithub.pd.alertlogic.net/defender/al_ui_template/issues"
},
"scripts": {
"build": "npm run less && npm run test && grunt install && node build/build.js && node build/zip.js",
"translations": "grunt install && node build/build.js",
"hookmeup": "cd utility; ./hookmeup.sh",
"karma-internal": "karma start --single-run",
"karma": "karma start --single-run",
"less": "lessc src/main/css/production.less > src/main/css/app.css",
"lint": "node node_modules/.bin/jshint --config ./.jshintrc --exclude-path ./.jshintignore src/main/",
"postinstall": "parallelshell 'npm run hookmeup' 'npm run less' 'grunt install'",
"release": "npm version patch",
"release:build": "npm version patch && npm run build",
"start": "ws -p 8888 -d src/main/",
"test": "npm run lint && npm run karma",
"watch": "parallelshell 'npm run watch:html' 'npm run watch:less' 'npm run watch:js' 'npm run watch:test' 'npm start'",
"watch:design": "parallelshell 'npm run watch:less' 'npm start'",
"watch:dev": "parallelshell 'npm run watch:js' 'npm run watch:test' 'npm start'",
"watch:html": "onchange 'src/main/**/*.html' '!src/main/coverage/**' '!src/main/doc/**' -- grunt install",
"watch:js": "onchange 'src/main/**/*.js' '!src/main/**/*.test.js' '!src/main/coverage/**' '!src/main/doc/**' -- npm run lint",
"watch:less": "onchange 'src/main/**/*.less' -- npm run less",
"watch:test": "onchange 'src/main/**/*.test.js' '!src/main/coverage/**' '!src/main/doc/**' -- npm run unit-tests all",
"livereload": "cd src/main ; ../../node_modules/instant-server/bin/instant 8888",
"jenkins-protractor": "cd src/test/ ; ./protractor-jenkins.sh",
"protractor": "cd src/test/ ; ./protractor-local.sh; "
},
"repository": {
"type": "git",
"url": "[email protected]:alertlogic/al_ui_template.git"
},
"version": "2.1.0",
"license": "MIT",
"engines": {
"node": "5.9.0"
},
"dependencies": {
"graceful-fs": "^4.1.3",
"lodash": "^4.6.1",
"bower": "^1.7.7",
"cssmin": "^0.4.3",
"glob": "3.1.21",
"glob-all": "3.0.1",
"grunt": "^0.4.5",
"grunt-angular-gettext": "^2.1.11",
"grunt-cli": "^0.1.13",
"httpbackend": "^2.0.0",
"instant-server": "^2.0.0",
"jasmine-core": "^2.4.1",
"jasmine-reporters": "^2.1.1",
"jshint": "^2.9.1",
"karma": "^0.13.22",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8",
"karma-junit-reporter": "^0.4.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^0.2.5",
"lazystream": "^1.0.0",
"less": "^2.6.1",
"load-grunt-tasks": "^3.4.1",
"local-web-server": "^1.2.1",
"mkdirp": "^0.5.1",
"onchange": "^2.1.2",
"parallelshell": "^2.0.0",
"phantomjs-prebuilt": "^2.1.5",
"process": "^0.11.2",
"protractor": "^3.1.1",
"protractor-html-screenshot-reporter": "^0.0.21",
"protractor-jasmine2-screenshot-reporter": "^0.3.0",
"react": "^0.14.7",
"readable-stream": "^2.0.1",
"replacestream": "^4.0.0",
"requirejs": "^2.1.22",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"webdriver-manager": "^8.0.0"
},
"folders": {
"build": "target/",
"builde2e": "targete2e/",
"translations": "po/",
"wwwRoot": "src/main/",
"jsSource": "src/main/",
"testRoot": "src/test/"
},
"devDependencies": {}
}