-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@author.io/element-control",
"version": "1.1.3",
"description": "author-control custom element (web component).",
"main": "dist/author-control.min.js",
"scripts": {
"build": "npm run clean && rollup -c ./rollup.release.config.js",
"build-dev": "npm run build && npm run build-showroom",
"build-showroom": "cd showroom/ && npm run build && cd ../",
"clean": "node clean.js",
"deploy": "npm run build && npm publish --access public",
"test": "npm run build && karma start karma.conf.es6.js && karma start karma.conf.es6-modules.js && karma start karma.conf.es5.js && npm run test:syntax",
"test:syntax": "standard --verbose | snazzy",
"test:es5": "npm run build && karma start karma.conf.es5.js",
"test:es5:local": "npm run build && karma start karma.conf.es5.js --local && npm run test:syntax",
"test:es6": "npm run build && karma start karma.conf.es6.js",
"test:es6:local": "npm run build && karma start karma.conf.es6.js --local && npm run test:syntax",
"test:es6-modules": "npm run build && karma start karma.conf.es6-modules.js",
"test:es6-modules:local": "npm run build && karma start karma.conf.es6-modules.js --local && npm run test:syntax",
"test:es5:sauce": "TRAVIS_BUILD_NUMBER=1 && npm run build && karma start karma.conf.es5.js"
},
"files": [
"dist/*.js",
"dist/*.js.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/author-elements/control.git"
},
"keywords": [
"author",
"web",
"component",
"custom",
"element",
"form",
"control",
"chassis",
"ngn"
],
"author": {
"name": "Author.io",
"url": "https://author.io"
},
"contributors": [
{
"name": "Graham Butler",
"url": "http://grahambutler.com"
},
{
"name": "Corey Butler",
"url": "http://coreybutler.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/author-elements/control/issues"
},
"homepage": "https://github.com/author-elements/control#readme",
"devDependencies": {
"@author.io/karma-customelements": "^1.1.11",
"@author.io/rollup-plugin-wcbuilder": "^1.1.4",
"fs-extra": "^7.0.1",
"karma": "^4.0.0",
"rollup": "^1.1.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-uglify": "^6.0.1",
"rollupify": "^0.5.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.1.1",
"tape": "^4.9.2"
},
"standard": {
"ignore": [
"_*",
"_**/*",
"test/lib/**/*",
"node_modules",
"dist",
"rollup*.js"
],
"globals": [
"customElements",
"KeyboardEvent",
"crypto",
"msCrypto",
"CustomEvent",
"window",
"MutationObserver",
"DOMParser",
"XMLHttpRequest",
"FormData",
"btoa",
"localStorage",
"fetch",
"Element",
"HTMLElement",
"NodeFilter"
]
},
"dependencies": {},
"publishConfig": {
"access": "public"
}
}