-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
63
64
65
66
67
{
"name": "@littleq/router-lite",
"version": "0.0.1",
"description": "Router lite that uses the element-lite",
"main": "router-lite.js",
"scripts": {
"size": "./node_modules/.bin/size-limit",
"semistandard": "./node_modules/.bin/semistandard",
"wct": "./node_modules/.bin/wct --npm",
"wct-prod": "./node_modules/.bin/wct --npm --configFile wct-prod.conf.json",
"test": "npm run semistandard && npm run size && npm run wct-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjmonsi/router-lite.git"
},
"author": "TJ Monserrat",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmonsi/router-lite/issues"
},
"homepage": "https://github.com/tjmonsi/router-lite#readme",
"dependencies": {
"@littleq/element-lite": "^0.1.0",
"path-to-regexp": "^2.2.0"
},
"keywords": [
"webcomponents"
],
"flat": true,
"size-limit": [
{
"path": "location-lite.js",
"limit": "1.35KB"
}
],
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"test/*"
],
"env": [
"mocha"
]
},
"devDependencies": {
"@polymer/iron-test-helpers": "0.0.3",
"babel-eslint": "8.2.2",
"chai": "4.1.2",
"eslint": "4.19.1",
"eslint-config-semistandard": "12.0.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-html": "3.2.2",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-mocha": "4.12.1",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1",
"lodash": "3.10.1",
"mocha": "5.0.5",
"semistandard": "12.0.1",
"size-limit": "0.17.0",
"wct-browser-legacy": "0.0.1-pre.11",
"web-component-tester": "6.5.0"
}
}