-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.39 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
{
"name": "angular-module-boilerplate",
"private": true,
"version": "0.0.0",
"main": "index.js",
"description": "A Daterange Picker AngularJS Module",
"repository": "",
"author": "Vansh Khanna",
"license": "MIT",
"devDependencies": {
"bower": "^1.7.7",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "https://github.com/InnovAccer/eslint-config-airbnb-base.git",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.8.11",
"gulp-add-src": "^0.2.0",
"gulp-angular-templatecache": "^1.5.0",
"gulp-concat": "^2.5.2",
"gulp-csscomb": "^3.0.3",
"gulp-eslint": "3.0.1",
"gulp-header": "^1.2.2",
"gulp-less": "^3.0.1",
"gulp-minify-css": "^0.5.1",
"gulp-minify-html": "^1.0.0",
"gulp-ng-annotate": "^0.5.2",
"gulp-order": "^1.1.1",
"gulp-protractor": "0.0.12",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.1.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-junit-reporter": "^0.4.1",
"protractor": "^4.0.9"
},
"scripts": {
"postinstall": "bower install",
"update-deps": "npm update",
"postupdate-deps": "bower update",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 ./demo",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js",
"update-index-async": "node -e \"var fs=require('fs'),indexFile='app/index-async.html',loaderFile='app/bower_components/angular-loader/angular-loader.min.js',loaderText=fs.readFileSync(loaderFile,'utf-8').split(/sourceMappingURL=angular-loader.min.js.map/).join('sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map'),indexText=fs.readFileSync(indexFile,'utf-8').split(/\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/).join('//@@NG_LOADER_START@@\\n'+loaderText+' //@@NG_LOADER_END@@');fs.writeFileSync(indexFile,indexText);\""
},
"dependencies": {
"eslint-config-airbnb-base": "git+https://github.com/InnovAccer/eslint-config-airbnb-base.git#77e5d30c71205cf052983d4c06cbfe771bd76835"
}
}