-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 5.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "aurelia-orbit",
"version": "1.0.0",
"description": "POC Using OrbitJS with Aurelia.",
"main": "dist/main.js",
"scripts": {
"pretest": "del-cli \"test/coverage\"",
"test": "cross-env BABEL_ENV=node NODE_ENV=test ./node_modules/karma/bin/karma start test/karma.conf.js",
"test:debug": "npm test -- --single-run=false --debug",
"webdriver:update": "cross-env ./node_modules/.bin/webdriver-manager update",
"webdriver:start": "cross-env ./node_modules/.bin/webdriver-manager start",
"pree2e": "npm run webdriver:update -- --standalone",
"e2e": "concurrently --success first --kill-others \"npm run e2e:start-when-ready\" \"cross-env WEBPACK_PORT=19876 npm start\"",
"e2e:start-when-ready": "wait-on --timeout 120000 http-get://localhost:19876/index.html && npm run e2e:start",
"e2e:start": "cross-env ./node_modules/.bin/protractor test/protractor.conf.js",
"e2e:live": "npm run e2e:start -- --elementExplorer",
"clean": "npm cache clean && del-cli node_modules \"test/coverage\" dist",
"clean:dist": "del-cli dist",
"preclean:install": "npm run clean",
"clean:install": "npm install",
"preclean:start": "npm run clean",
"clean:start": "npm start",
"watch": "npm run watch:dev",
"watch:dev": "npm run build:dev -- --watch",
"watch:dev:hmr": "npm run watch:dev -- --hot",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"watch:prod": "npm run build:prod -- --watch",
"build": "npm run build:dev",
"prebuild:dev": "npm run clean:dist",
"build:dev": "cross-env NODE_ENV=development npm run webpack -- --progress --profile",
"prebuild:prod": "npm run clean:dist",
"build:prod": "cross-env NODE_ENV=production npm run webpack -- --progress --profile",
"start": "npm run server:dev",
"server": "npm run server:dev",
"server:dev": "cross-env NODE_ENV=development npm run webpack-dev-server -- --inline --progress --profile --watch",
"server:dev:hmr": "npm run server:dev -- --hot",
"server:prod": "http-server dist --cors",
"webpack": "cross-env BABEL_ENV=node ./node_modules/.bin/webpack",
"webpack-dev-server": "cross-env BABEL_ENV=node ./node_modules/.bin/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aurelia/skeleton-navigation.git"
},
"keywords": [
"aurelia",
"skeleton",
"navigation",
"webpack"
],
"license": "CC0-1.0",
"author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
"contributors": [
{
"name": "Arjen de Blok"
},
{
"name": "Bazyli Brzóska <bazyli.brzoska@gmail.com> (https://invent.life)"
}
],
"bugs": {
"url": "https://github.com/aurelia/skeleton-navigation/issues"
},
"homepage": "https://github.com/aurelia/skeleton-navigation#readme",
"aurelia": {
"build": {
"resources": []
}
},
"dependencies": {
"@orbit/coordinator": "^0.15.0",
"@orbit/core": "^0.15.0",
"@orbit/data": "^0.15.0",
"@orbit/indexeddb": "^0.15.0",
"@orbit/indexeddb-bucket": "^0.15.0",
"@orbit/jsonapi": "^0.15.0",
"@orbit/local-storage-bucket": "^0.15.0",
"@orbit/store": "^0.15.0",
"aurelia-bootstrapper-webpack": "^1.1.0",
"aurelia-event-aggregator": "^1.0.0",
"aurelia-fetch-client": "^1.0.1",
"aurelia-framework": "^1.0.7",
"aurelia-history-browser": "^1.0.0",
"aurelia-loader-webpack": "^1.0.3",
"aurelia-logging-console": "^1.0.0",
"aurelia-pal-browser": "^1.0.0",
"aurelia-polyfills": "^1.1.1",
"aurelia-route-recognizer": "^1.1.0",
"aurelia-router": "^1.0.7",
"aurelia-templating-binding": "^1.1.0",
"aurelia-templating-resources": "^1.2.0",
"aurelia-templating-router": "^1.0.0",
"babel-polyfill": "^6.20.0",
"bluebird": "^3.4.6",
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@easy-webpack/config-aurelia": "^2.2.2",
"@easy-webpack/config-babel": "^4.0.0",
"@easy-webpack/config-common-chunks-simple": "^2.0.3",
"@easy-webpack/config-copy-files": "^1.1.2",
"@easy-webpack/config-css": "^4.0.0",
"@easy-webpack/config-env-development": "^2.1.5",
"@easy-webpack/config-env-production": "^3.0.0",
"@easy-webpack/config-external-source-maps": "^3.1.0",
"@easy-webpack/config-fonts-and-images": "^2.1.0",
"@easy-webpack/config-generate-index-html": "^2.1.1",
"@easy-webpack/config-global-bluebird": "^2.1.0",
"@easy-webpack/config-global-jquery": "^2.1.0",
"@easy-webpack/config-global-regenerator": "^1.2.2",
"@easy-webpack/config-html": "^3.1.0",
"@easy-webpack/config-json": "^3.1.0",
"@easy-webpack/config-test-coverage-istanbul": "^3.2.0",
"@easy-webpack/config-uglify": "^2.2.3",
"@easy-webpack/core": "^2.0.0",
"aurelia-protractor-plugin": "^1.0.1",
"aurelia-tools": "^1.0.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.0.0",
"babel-register": "^6.18.0",
"concurrently": "^3.1.0",
"cross-env": "^3.1.3",
"del-cli": "^0.2.0",
"eslint": "^3.12.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.0",
"karma-remap-istanbul": "^0.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"protractor": "^4.0.11",
"wait-on": "^2.0.1",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.12"
}
}