-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
{
"name": "howto-components",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "mkdir -p docs/scripts && cp node_modules/@webcomponents/webcomponentsjs/webcomponents-sd-ce.js docs/scripts/ && node build-documentation.js",
"docker-build": "docker build -t googlechrome/howto-components .",
"docker-test": "docker run -e TRAVIS=$TRAVIS googlechrome/howto-components",
"docker": "npm run docker-build && npm run docker-test",
"watch": "npm-watch",
"test-lint": "eslint elements site-resources *.js",
"test-unit": "karma start",
"test-e2e": "node run-e2e-tests.js",
"test": "npm run test-lint && npm run test-unit && npm run test-e2e"
},
"watch": {
"build": {
"patterns": [
"elements",
"site-resources/*"
],
"extensions": "js,html,css,md"
}
},
"author": "Google",
"contributors": [
{
"name": "Rob Dodson",
"email": "robdodson@google.com"
},
{
"name": "Surma",
"email": "surma@google.com"
},
{
"name": "Monica Dinculescu",
"email": "noms@google.com"
},
{
"name": "Ewa Gasperowicz",
"email": "ewag@google.com"
}
],
"license": "Apache-2.0",
"dependencies": {
"@webcomponents/webcomponentsjs": "^1.0.8",
"dot": "^1.1.1",
"fs-extra": "^1.0.0",
"karma-chai": "^0.1.0",
"marked": "^0.3.6",
"mz": "^2.6.0",
"prismjs": "^1.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chromedriver": "^2.29.0",
"eslint": "^3.13.1",
"eslint-config-google": "^0.7.1",
"express": "^4.14.0",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.2.0",
"npm-watch": "^0.1.8",
"selenium-assistant": "^5.0.4",
"selenium-webdriver": "^3.4.0"
}
}