This repository has been archived by the owner on May 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "create-evergreen-app",
"version": "0.5.0",
"description": "Create an evergreen web application with no build configuration.",
"license": "MIT",
"author": "Owen Buckley <[email protected]>",
"homepage": "https://github.com/ProjectEvergreen/create-evergreen-app#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/create-evergreen-app.git"
},
"keywords": [
"Web Components",
"LitElement",
"lit-html",
"JavaScript",
"CSS",
"HTML"
],
"bin": {
"create-evergreen-app": "./tasks/cea-install.js"
},
"files": [
"template/.browserslistrc",
"template/.editorconfig",
"template/.eslintrc",
"template/.gitattributes",
"template/yarn.lock",
"template/package.json",
"template/package-lock.json",
"template/babel.config.js",
"template/karma-test-shim.js",
"template/karma.conf.js",
"template/lws.config.js",
"template/postcss.config.js",
"template/README.md",
"template/webpack.config.common.js",
"template/webpack.config.develop.js",
"template/webpack.config.prod.js",
"template/src/",
"tasks/",
"test/",
"README.md",
"package-lock.json"
],
"scripts": {
"lint": "eslint \"./tasks/**/*.js\" \"./test/**/*.js\"",
"gh-pages": "rimraf ./docs && cd ./template && npm ci && npm run build && cd ../ && cp -rv ./template/public/ ./docs",
"test:template": "cd template && npm i && export NODE_ENV=production && npm run test && npm run lint && npm run build",
"test:template-backup": "export NODE_ENV=production && npm i --prefix template && npm test --prefix template && npm run lint --prefix template && npm run build --prefix template",
"test": "mocha --timeout 5000"
},
"dependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"eslint": "^5.13.0",
"fs-extra": "^7.0.1",
"mocha": "^5.2.0"
}
}