-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.25 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.25 KB
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
{
"name": "lannister-component",
"version": "1.0.7",
"description": "An Open Source web component by UCSD Students",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint . ./packages/**/*.js",
"nyc_init": "nyc cover mocha",
"test": "wct",
"doc": "esdoc -c .esdoc.json",
"cover": "istanbul cover _mocha",
"build": "./node_modules/.bin/rollup -c"
},
"files": [
"dist/bundle.js"
],
"author": "Team Lannister",
"repository": {
"type": "git",
"url": "git+https://github.com/ucsd-cse112/team6.git"
},
"unpkg": "dist/bundle.js",
"license": "ISC",
"devDependencies": {
"bower": "1.8.8",
"chai": "^4.2.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"husky": "^2.4.0",
"mocha": "^6.1.4",
"rollup": "^1.14.4",
"rollup-plugin-babel-minify": "^8.0.0",
"wct-istanbub": "^0.2.9",
"web-component-tester": "^6.9.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"nyc": {
"all": true,
"reporter": [
"text",
"lcov",
"html"
],
"instrument": true
},
"dependencies": {
"puppeteer": "^1.17.0",
"web-component-tester-istanbul": "^0.10.0"
}
}