-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"name": "byu-web-community-cdn-site",
"version": "0.1.0",
"description": "Web site for BYU web community CDN",
"main": "index.js",
"scripts": {
"prepare": "bower install",
"lint": "npm run lint:javascript && polymer lint",
"lint:javascript": "eslint . --ext js,html --ignore-path .gitignore",
"test": "polymer test",
"test:integration": "polymer build # test that psk builds without error with the CLI",
"clean-dist": "del dist && make-dir dist",
"copy-build": "cp -R build/es6-bundled/* dist/",
"build": "polymer build && npm run clean-dist && npm run copy-build",
"start": "live-server --no-browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byuweb/web-cdn-site.git"
},
"author": "Joseph Moore <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byuweb/web-cdn-site/issues"
},
"homepage": "https://github.com/byuweb/web-cdn-site#readme",
"devDependencies": {
"bower": "^1.8.0",
"cpy-cli": "^1.0.1",
"del-cli": "^1.1.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.0",
"eslint-plugin-html": "^2.0.0",
"live-server": "^1.2.0",
"make-dir-cli": "^1.0.0",
"polymer-cli": "^1.4.1"
}
}