-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@littleq/router-lite",
"version": "0.1.0",
"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": "npm run pretest && ./node_modules/.bin/wct --npm",
"wct-firefox": "./node_modules/.bin/wct --npm --configFile wct-firefox.conf.json",
"wct-prod": "./node_modules/.bin/wct --npm --configFile wct-prod.conf.json",
"wct-sauce": "./node_modules/.bin/wct --npm --configFile wct-sauce.conf.json",
"test": "npm run semistandard && npm run size && npm run wct-prod",
"build": "./node_modules/.bin/rollup -c",
"postinstall": "node compiler.js && ./node_modules/.bin/semistandard --fix lib/path-to-regexp.js",
"pretest": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"router-lite.js",
"route-data-lite.js",
"dist"
],
"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": {
"path-to-regexp": "^2.2.0"
},
"keywords": [
"webcomponents"
],
"flat": true,
"size-limit": [
{
"path": "router-lite.js",
"limit": "1.9KB"
},
{
"path": "route-data-lite.js",
"limit": "250B"
}
],
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"test/*",
"dist/*"
],
"env": [
"mocha"
]
},
"devDependencies": {
"@polymer/iron-test-helpers": "3.0.1",
"babel-eslint": "9.0.0",
"chai": "4.1.2",
"eslint": "5.6.0",
"eslint-config-semistandard": "12.0.1",
"eslint-config-standard": "12.0.0",
"eslint-plugin-chai-friendly": "0.4.1",
"eslint-plugin-html": "4.0.6",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"lodash": "^3.10.1",
"mocha": "5.2.0",
"rollup": "0.66.2",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.1.8",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-uglify": "6.0.0",
"semistandard": "12.0.1",
"size-limit": "0.20.0",
"wct-browser-legacy": "1.0.1",
"web-component-tester": "6.8.0"
}
}