-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "@live-table/core",
"version": "1.0.0",
"description": "The core specification and tools of a live-table.",
"main": "dist/index.js",
"scripts": {
"build": "ts-node scripts/build",
"start": "ts-node scripts/start",
"test": "jest --coverage",
"watch-test": "jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/live-table/core.git"
},
"keywords": [
"live-table",
"table",
"typings",
"types"
],
"author": "Dorian Herlory (https://laboiteadodo.fr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/live-table/core/issues"
},
"homepage": "https://github.com/live-table/core#readme",
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/shelljs": "^0.8.6",
"@types/webpack": "^4.41.7",
"jest": "^25.1.0",
"shelljs": "^0.8.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typedoc": "^0.16.11",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"jest": {
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/node_modules/**"
],
"coverageDirectory": "../coverage",
"preset": "ts-jest",
"rootDir": "src"
}
}