-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 759 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"name": "sm-element",
"version": "1.4.1",
"description": "state machine backed custom element base class, with lit-html rendering",
"main": "sm-element.js",
"module": "sm-element.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/jrobinson01/sm-element.git"
},
"scripts": {
"build": "tsc",
"test": "npm run build && wct",
"dev": "polymer serve -H 0.0.0.0"
},
"author": "jrobinsonmedia@gmail.com",
"license": "ISC",
"dependencies": {
"lit-html": "^1.0.0"
},
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.1.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"wct-browser-legacy": "^1.0.2",
"web-component-tester": "^6.9.0"
}
}