-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "web-component-skeleton",
"version": "0.0.0",
"description": "A skeleton repo for bulding vanilla web components",
"main": "dist/WebComponentSkeleton.js",
"config": {
"src": "src/WebComponentSkeleton.ts"
},
"repository": {
"type": "git",
"url": "http://github.com/nuclei/web-component-skeleton"
},
"bugs": {
"url": "http://github.com/nuclei/web-component-skeleton/issues"
},
"keywords": [
"vanilla web components",
"web component skeleton"
],
"author": "Lukas Oppermann",
"license": "MIT",
"devDependencies": {
"@webcomponents/webcomponentsjs": "^1.0.7",
"rollup": "^0.41.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-watch": "^3.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"standard-readme": "^2.0.2",
"typescript": "^2.3.2",
"typescript-eslint-parser": "^2.1.0"
},
"scripts": {
"build": "npm test && rollup -c",
"build:watch": "npm run build -- -w",
"demo": "cp -r node_modules/@webcomponents/webcomponentsjs docs/polyfill",
"test": "standard src/*.ts --parser typescript-eslint-parser | snazzy && tsc src/*.ts --noEmit --pretty --alwaysStrict --noUnusedLocals --target ES5 --lib es6,dom && standard-readme",
"travis": "npm run test"
}
}