-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "common-ui",
"version": "1.0.0",
"description": "A collection of common web components",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"start": "node index.js",
"lint": "eslint --ext .html,.js .",
"lint-fix": "eslint --fix --ext .html,.js .",
"test": "wct",
"watch": "gulp test-watch",
"bower-install": "bower install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cambridgeweblab/common-ui.git"
},
"keywords": [
"web-components"
],
"author": "WebLab",
"license": "MIT",
"bugs": {
"url": "https://github.com/cambridgeweblab/common-ui/issues"
},
"homepage": "https://github.com/cambridgeweblab/common-ui#readme",
"devDependencies": {
"bower": "^1.7.9",
"eslint": "^3.6.0",
"eslint-config-weblab": "git+https://github.com/cambridgeweblab/eslint-config-weblab.git",
"eslint-plugin-html": "^2.0.1",
"gulp": "^3.9.1",
"node-notifier": "^5.1.2",
"web-component-tester": "^5.0.1",
"web-component-tester-istanbul": "^0.10.0"
},
"dependencies": {
"body-parser": "1.15.2",
"compression": "1.6.2",
"express": "4.14.0"
}
}