-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "data-worker",
"version": "1.0.2",
"description": "A simple project enabling some cool data operations on large arrays",
"keywords": [
"nest",
"data",
"group",
"data",
"statistics",
"json"
],
"source": "src/data-worker.ts",
"main": "dist/data-worker.umd.js",
"typings": "dist/types/data-worker.d.ts",
"files": [
"dist"
],
"author": "Piyush Gupta <Piyush-Gupta>",
"repository": {
"type": "git",
"url": "https://github.com/piyushgupta1/data-worker.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint --ext .ts src/**",
"prebuild": "rimraf dist coverage",
"build": "parcel build src/data-worker.ts",
"start": "tsc -w",
"test": "rimraf dist coverage && jest",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"docs": "rimraf dist/docs && typedoc --out dist/docs src/data-worker.ts",
"deploy-docs": "npm run docs && ts-node tools/gh-pages-publish",
"prepush": "npm run test:prod && npm run build"
},
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.3.2",
"@types/d3-array": "^3.0.2",
"@types/d3-collection": "^1.0.8",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
},
"dependencies": {
"d3-array": "^3.0.2",
"d3-collection": "^1.0.7"
}
}