-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "d3tscriptive",
"version": "0.0.1",
"description": "D3(T)Scriptive - D3-based components built with Typescript",
"license": "MIT",
"main": "./dist/index.js",
"min": "./dist/index.min.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist & rollup -c",
"test": "jest --watch",
"test:once": "jest",
"test:coverage": "jest --coverage",
"install:peers": "install-peers -f"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "coverage",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"d3": "^5.7.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.0.0",
"@types/d3": "^5.7.0",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"@wessberg/rollup-plugin-ts": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.2.0",
"install-peers-cli": "^2.2.0",
"jest": "^24.9.0",
"rollup": "^1.27.14",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.3",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}