-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.59 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
{
"description": "Webcomponent demo",
"repository": {
"type": "git",
"url": "git+https://github.com/milieuinfo/webcomponent-demo.git"
},
"homepage": "https://github.com/milieuinfo/webcomponent-demo#readme",
"name": "webcomponent-demo",
"version": "0.0.1",
"directories": {
"test": "test",
"demo": "demo"
},
"scripts": {
"clean": "rm -rf build node_modules build bower_components etc node",
"build": " npm run build:empathy && npm run clean && npm install && npm run build:demo",
"build:demo": "npm run copy && npm run delete && npm run analyze && npm run replace",
"build:empathy": "empathy install -a assets --only @polymer/iron-component-page @polymer/iron-demo-helpers @webcomponents/webcomponentsjs",
"analyze": "polymer analyze ./vo*.js > analysis.json",
"delete": "npm run delete:node_modules && npm run delete:vodomg-demo",
"delete:node_modules": "del 'node_modules/**/readme.md'",
"delete:vodomg-demo": "del 'vodomg-demo.js'",
"copy": "npm run copy:webcomponent && npm run copy:demo",
"copy:webcomponent": "copyfiles -f node_modules/**/vo*.js .",
"copy:demo": "copyfiles -f node_modules/**/demo/vo*.html ./demo",
"replace": "npm run replace:component && npm run replace:demo",
"replace:component": "replace '../../node_modules/' './node_modules/' * --exclude='package.json,index.html'",
"replace:demo": "replace '../node_modules/' '../assets/' ./demo/* --exclude='package.json'"
},
"publishConfig": {
"registry": "http://artifactory-pr-build.lb.cumuli.be:8081/artifactory/api/npm/acd-npm/"
},
"bugs": {
"url": "https://github.com/milieuinfo/webcomponent-demo/issues"
},
"resolutions": {
"inherits": "2.0.3",
"samsam": "1.1.3",
"supports-color": "3.1.2",
"type-detect": "1.0.0"
},
"main": "index.html",
"devDependencies": {
"copyfiles": "2.1.0",
"del-cli": "1.1.0",
"replace": "1.0.0",
"@0xcda7a/empathy": "0.0.9"
},
"dependencies": {
"@polymer/iron-component-page": "4.0.1",
"@polymer/iron-demo-helpers": "3.0.2",
"@webcomponents/webcomponentsjs": "2.1.3",
"vo-buildinfo": "milieuinfo/webcomponent-vo-buildinfo",
"vo-font": "milieuinfo/webcomponent-vo-font",
"vo-footer": "milieuinfo/webcomponent-vo-footer",
"vo-header": "milieuinfo/webcomponent-vo-header",
"vo-template": "milieuinfo/webcomponent-vo-template",
"vo-upload": "milieuinfo/webcomponent-vo-upload",
"vodomg-demo": "milieuinfo/webcomponent-vodomg-demo",
"vodomg-litelement": "milieuinfo/webcomponent-vodomg-litelement",
"vo-paginatie": "milieuinfo/webcomponent-vo-paginatie"
}
}