-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "impera-js",
"version": "0.7.8",
"sideEffects": false,
"type": "module",
"description": "Tiny, Proxy based App State Managment for custom-elements",
"main": "build/impera.js",
"types": "src/impera.ts",
"scripts": {
"build": "tsc",
"test": "npm run build; firefox http://127.0.0.1:8080/test/ ; http-server ",
"watch": "tsc -t es2018 --outDir build/ -w src/stateElement.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebComponentHelpers/ImperaJS.git"
},
"keywords": [
"web-component",
"webcomponent",
"state",
"app-state",
"proxy",
"managment",
"lit-element",
"custom-element"
],
"author": "panmanfredini",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebComponentHelpers/ImperaJS.git/issues"
},
"homepage": "https://github.com/WebComponentHelpers/ImperaJS.git#readme",
"devDependencies": {
"chai": "^4.2.0",
"lit-element": "^2.3.1",
"mocha": "^7.1.1",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
},
"dependencies": {}
}