-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "lit-migration",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "tsc index.ts && jest",
"test:realfiles": "tsc index.ts && tsc test-on-real-files.ts && node test-on-real-files.js",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FelixSchuSi/lit-migration.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FelixSchuSi/lit-migration/issues"
},
"homepage": "https://github.com/FelixSchuSi/lit-migration#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jscodeshift": "^0.11.2",
"diff": "^5.0.0",
"jest": "^27.2.5",
"jscodeshift": "^0.12.0",
"lit": "^2.0.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"rollup": "^2.58.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/diff": "^5.0.1",
"@types/node": "^15.14.9"
}
}