-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.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
{
"name": "lit-redux-watch",
"version": "0.3.8",
"description": "Create properties in LitElements that watch for updates in a redux store",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"ci:test": "npm-run-all -l build test:*",
"clean": "del-cli dist",
"docs": "typedoc && touch docs/.nojekyll",
"prepare": "npm-run-all -l build",
"test": "npm-run-all build test:*",
"test:jest": "NODE_ENV=test jest",
"test:lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerarts/lit-redux-watch.git"
},
"keywords": [
"redux",
"watch",
"lit"
],
"author": {
"name": "Paul Gerarts",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gerarts/lit-redux-watch/issues"
},
"homepage": "https://github.com/gerarts/lit-redux-watch#readme",
"devDependencies": {
"@types/jest": "^23.3.14",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-core": "^6.26.3",
"babel-jest": "^24.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.3",
"del-cli": "^1.1.0",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"redux": "^4.0.1",
"regenerator-runtime": "^0.13.2",
"reselect": "^4.0.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/*.test.{ts,tsx,js,jsx}"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"roots": [
"<rootDir>/lib"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}