forked from canonical-web-and-design/tutorials.ubuntu.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.16 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
{
"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' --extract",
"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": "node ./server.js --root build/ --host 0.0.0.0 --port ${PORT:-80} $(if [ -n \"${BOT_PROXY:-}\" ]; then echo \"--bot-proxy ${BOT_PROXY}\"; fi)",
"test": "npm-run-all lint-js lint-polymer lint-style lint-content"
},
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"eslint-plugin-html": "^2.0.0",
"find": "^0.2.7",
"gray-matter": "^3.1.1",
"mocha": "^4.0.1",
"mocha-minimalist-reporter": "^1.1.0",
"polymer-cli": "^1.5.7",
"prpl-server": "^1.0.0",
"stylelint": "7.13.0",
"stylelint-config-polymer": "^0.0.1",
"stylelint-processor-html": "^1.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"express-interceptor": "^1.2.0",
"npm-run-all": "^4.0.2",
"sitemap": "^1.13.0"
}
}