-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "intersection-splitter",
"version": "0.2.0",
"description": "Split intersections out of sets into connected nodes.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE.md",
"README.md"
],
"directories": {
"test": "tests"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"build:docs": "typedoc --out docs src/*",
"lint": "eslint src/",
"test": "jest --config jest.json",
"lint:test": "eslint tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/floratmin/intersection-splitter.git"
},
"keywords": [
"svelte",
"fragments"
],
"author": "Florian Murat Koch <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"jest": "^27.0.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}