-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
{
"name": "testing-webcomponents",
"version": "1.0.0",
"description": "It's a guide to create testers from webcomponents",
"main": "test-component.js",
"directories": {
"test": "test"
},
"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",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjmonsi/testing-webcomponents.git"
},
"author": "TJ Monserrat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmonsi/testing-webcomponents/issues"
},
"homepage": "https://github.com/tjmonsi/testing-webcomponents#readme",
"flat": true,
"size-limit": [
{
"path": "test-component.js",
"limit": "3KB"
}
],
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"test/*",
"dist/*",
"polyfills/*"
],
"env": [
"mocha"
]
},
"devDependencies": {
"@polymer/iron-test-helpers": "0.0.3",
"babel-eslint": "8.2.2",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"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.10.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.16.2",
"wct-browser-legacy": "0.0.1-pre.11",
"web-component-tester": "6.5.0"
}
}