This repository has been archived by the owner on Feb 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
/
package.json
56 lines (56 loc) · 2.05 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
{
"name": "tutorials.ubuntu.com",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-websites/tutorials.ubuntu.com.git"
},
"bugs": {
"url": "https://github.com/canonical-websites/tutorials.ubuntu.com/issues"
},
"homepage": "https://tutorials.ubuntu.com",
"scripts": {
"build": "echo 'To build site, please use build-all'",
"build-all": "npm-run-all -s build-tutorials build-api-feeds build-site",
"build-api-feeds": "./bin/build-api-feeds",
"build-site": "npm-run-all polymer-build",
"build-tutorials": "./bin/generate",
"clean": "rm -rf api bower_components node_modules build src/codelabs",
"lint-js": "eslint 'src/**/*.html'",
"lint-polymer": "polymer lint -i src/*.html -i src/elements/*",
"lint-style": "npm-run-all lint-style-*",
"lint-style-html": "stylelint 'src/**/*.html'",
"lint-content": "mocha -R mocha-minimalist-reporter",
"polymer": "./bin/polymer",
"polymer-build": "npm-run-all 'polymer build {@}' --",
"polymer-lint": "npm-run-all 'polymer lint {@}' --",
"polymer-serve": "npm-run-all 'polymer serve {@}' --",
"prpl-server": "echo 'ERROR: Please use start-server script.' && exit 1",
"serve": "npm-run-all 'serve-examples {@}' --",
"serve-examples": "./bin/serve $(if [ -z \"$*\" ]; then echo \"examples\"; fi)",
"serve-live": "./bin/serve",
"start-server": "./entrypoint",
"test": "npm-run-all lint-js lint-polymer lint-style lint-content"
},
"devDependencies": {
"eslint-config-google": "0.13.0",
"eslint": "6.1.0",
"eslint-plugin-html": "6.0.0",
"find": "0.3.0",
"gray-matter": "4.0.2",
"mocha": "6.2.0",
"mocha-minimalist-reporter": "1.1.0",
"polymer-cli": "1.9.11",
"prpl-server": "1.4.0",
"stylelint": "10.1.0",
"stylelint-config-polymer": "0.0.1",
"stylelint-processor-html": "1.0.0"
},
"dependencies": {
"cheerio": "1.0.0-rc.3",
"express-interceptor": "1.2.0",
"express-redirect": "1.2.2",
"npm-run-all": "4.1.5",
"sitemap": "4.0.2"
}
}