This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
{
"name": "@exmg/exmg-form",
"flat": true,
"version": "1.6.2",
"description": "Paper style form wrapper",
"contributors": [
"Ex Machina"
],
"keywords": [
"web-components",
"polymer",
"paper",
"token",
"input"
],
"main": "exmg-form.js",
"files": [
"exmg-*.js",
"exmg-*.d.ts"
],
"repository": {
"type": "git",
"url": "git://github.com/ExmgElements/exmg-form.git"
},
"license": "MIT",
"dependencies": {
"@exmg/exmg-button": "^0.0.3",
"@polymer/iron-form": "^3.0.1",
"lit-element": "^2.1.0"
},
"devDependencies": {
"@polymer/iron-flex-layout": "^3.0.1",
"@exmg/exmg-markdown-editor": "^4.5.0",
"@exmg/exmg-paper-combobox": "^4.6.0",
"@exmg/exmg-paper-token-input": "^4.5.1",
"@exmg/exmg-radio-group": "^1.1.0",
"@polymer/iron-component-page": "^4.0.1",
"@polymer/iron-demo-helpers": "^3.1.0",
"@polymer/paper-input": "^3.0.2",
"@polymer/paper-item": "^3.0.1",
"@polymer/test-fixture": "^4.0.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/polymer": "^1.2.7",
"@webcomponents/webcomponentsjs": "^2.2.8",
"chai": "^4.2.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"mocha": "^5.2.0",
"tslint": "^5.15.0",
"tslint-config-exmg": "^1.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.4.3",
"wct-mocha": "^1.0.0",
"web-animations-js": "^2.3.1"
},
"scripts": {
"gen-docs": "typedoc --excludeNotExported --excludeExternals --excludePrivate --excludeProtected --ignoreCompilerErrors --exclude '{**/*test*,**/node_modules/**,**/test/**}' --out docs/ *.ts",
"build": "npm run lint && npm run tsc",
"tsc": "tsc -b ./tsconfig.json",
"prepublishOnly": "npm run build",
"preversion": "npm run build",
"start": "gulp serve",
"lint": "tslint -c ./tslint.json --project ./",
"test-dev": "polymer test --npm -p",
"test": "polymer test --npm --expanded",
"test:integration": "polymer build # test that psk builds without error with the CLI"
},
"publishConfig": {
"access": "public"
}
}