-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.46 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.46 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
{
"name": "oo-elements",
"description": "",
"version": "0.0.0",
"author": "Benjamin Gudehus <hastebrot@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/oolymer/oo-elements.git"
},
"license": "MIT",
"private": true,
"devDependencies": {
"bower": "1.8.4",
"browser-sync": "2.24.5",
"npm-delay": "https://github.com/krasevych/npm-delay",
"npm-run-all": "4.1.3",
"polyserve": "0.27.12",
"web-component-tester": "6.5.0"
},
"scripts": {
"start": "\"$npm_execpath\" run dev:serve",
"test": "\"$npm_execpath\" run test:chrome:headless",
"dev:serve": "npm-run-all --parallel serve dev:serve:watch",
"dev:serve:watch": "npm-run-all --serial util:delay serve:watch",
"install:bower": "bower install --force-latest",
"serve": "polyserve --port $npm_package_config_portServe",
"serve:watch": "browser-sync start --port $npm_package_config_portServeWatch --proxy \"localhost:$npm_package_config_portServe\" --no-ui --files \"*.js, *.html, demo/**/*.html, src/**/*.html, test/**/*.html\" --startPath \"/components/$npm_package_name/demo/oo-datatable-demo.html\"",
"test:chrome": "wct --local chrome --persistent --expanded --skip-selenium-install",
"test:chrome:headless": "wct --local chrome --expanded --configFile \"wct-headless.conf.json\"",
"util:delay": "npm-delay 1000",
"util:npm": "echo $npm_execpath"
},
"config": {
"portServe": "8500",
"portServeWatch": "8510"
}
}