-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.55 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.55 KB
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
{
"name": "apy-rest2front",
"private": true,
"version": "0.8.0",
"description": "Provide an easy-to-configure system to get a fully functional CRUD views based on a REST API schema",
"repository": "https://gitlab.com/apysoft/apy-rest2front",
"license": "MIT",
"dependencies": {
"base64-regex": "^1.1.1",
"@bower_components/angular": "angular/bower-angular#1.5.11",
"@bower_components/angular-animate": "angular/bower-angular-animate#~1.5.7",
"@bower_components/angular-backtop": "padsbanger/angular-backtop#*",
"@bower_components/angular-bootstrap": "angular-ui/bootstrap-bower#~1.3.3",
"@bower_components/angular-elastic": "monospaced/angular-elastic#^2.5.1",
"@bower_components/angular-loader": "angular/bower-angular-loader#~1.5.7",
"@bower_components/angular-mocks": "angular/bower-angular-mocks#~1.5.7",
"@bower_components/angular-route": "angular/bower-angular-route#~1.5.7",
"@bower_components/angular-ui-tree": "JimLiu/angular-ui-tree#~2.15.0",
"@bower_components/babel-polyfill": "nicksrandall/babel-polyfill#^0.0.1",
"@bower_components/bluebird": "petkaantonov/bluebird#^3.4.1",
"@bower_components/bootstrap": "twbs/bootstrap#~3.3.6",
"@bower_components/html5-boilerplate": "h5bp/html5-boilerplate#~5.3.0",
"@bower_components/jquery": "jquery/jquery-dist#~2.2.4",
"@bower_components/ng-file-upload": "danialfarid/angular-file-upload-bower#^12.0.4"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"del": "^2.2.1",
"eslint-config-google": "^0.6.0",
"eslint-plugin-babel": "^3.3.0",
"fs": "0.0.2",
"gulp": "^3.9.1",
"gulp-bower": "0.0.13",
"gulp-clean": "^0.3.2",
"gulp-cli": "^1.2.2",
"gulp-concat": "^2.6.0",
"gulp-copy": "0.0.2",
"gulp-cssnano": "^2.1.2",
"gulp-documentation": "^2.2.0",
"gulp-eslint": "^3.0.1",
"gulp-html-minifier": "^0.1.8",
"gulp-if": "^2.0.1",
"gulp-jsdoc3": "^0.3.0",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"html-minifier": "^3.0.2",
"http-server": "^0.6.1",
"istanbul": "^0.4.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.1.12",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^1.0.0",
"karma-threshold-reporter": "^0.1.15",
"minimatch": "^3.0.2",
"mkdirp": "^0.5.1",
"phantomjs-prebuilt": "^2.1.7",
"protractor": "^2.5.1",
"shelljs": "^0.2.6",
"webdriver-manager": "^10.1.0"
},
"config": {
"unsafe-perm": true
},
"scripts": {
"postinstall": "rm -rf app/components && ln -sf ../node_modules/@bower_components app/components",
"prestart": "yarn install",
"start": "http-server -a localhost -p 9000",
"pretest": "yarn install",
"test": "./node_modules/gulp/bin/gulp.js test",
"build": "./node_modules/gulp/bin/gulp.js build",
"make": "./node_modules/gulp/bin/gulp.js make",
"test-with-watcher": "./node_modules/karma/bin/karma start karma.conf.js",
"preupdate-webdriver": "yarn install",
"update-webdriver": "./node_modules/protractor/bin/webdriver-manager update --standalone",
"preprotractor": "yarn run update-webdriver",
"protractor": "./node_modules/protractor/bin/protractor e2e-tests/protractor.conf.js --standalone"
},
"main": "index.js",
"author": "Namgyal Brisson <namat4css@gmail.com>",
"engines": {
"yarn": ">= 1.0.0"
}
}