-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.63 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.63 KB
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
79
80
81
82
83
{
"name": "haystack-core",
"description": "Project Haystack Core",
"keywords": [
"project haystack",
"haystack",
"core",
"typescript"
],
"license": "BSD-3-Clause",
"author": "Gareth Johnson",
"homepage": "https://github.com/j2inn/haystack-core",
"email": "support@j2innovations.com",
"version": "3.0.9",
"module": "dist/index.es.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/j2inn/haystack-core"
},
"scripts": {
"watch": "nodemon --ext ts --ignore dist/ --ignore build/ --exec \"npm run lint && npm run test && npm run build\"",
"lint": "eslint --ext .ts .",
"format": "prettier-eslint \"./**/*.ts\" --write",
"test": "jest",
"coverage": "jest --coverage",
"doc": "typedoc ./src --excludePrivate",
"build": "npm run build:clean && tsc --project ./tsconfig.build.json && npx rollup --file=dist/index.es.js -- build/index.js && npx rollup --format=cjs --file=dist/index.js -- build/index.js && npx rollup --plugin=rollup-plugin-dts --file=dist/index.d.ts -- build/index.d.ts",
"build:clean": "rimraf ./dist && rimraf ./build",
"analyze": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json",
"server": "http-server",
"bundle": "webpack",
"start": "npm install && npm run test && npm run build && npm run bundle && npm run server",
"circular": "madge --circular --extensions ts ./",
"prepack": "npm run lint && npm test && npm run build",
"checktypes": "tsc --noEmit",
"perf:readgrid": "node ./perf/readGrid.js"
},
"files": [
"dist/**/*"
],
"config": {
"unsafe-perm": true
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/luxon": "^3.3.0",
"@types/moment-range": "^4.0.0",
"@types/moment-timezone": "^0.5.30",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"madge": "^8.0.0",
"moment-range": "^4.0.2",
"moment-timezone": "^0.5.43",
"nodemon": "^3.1.9",
"npm-dts": "^1.3.12",
"npm-dts-webpack-plugin": "^1.3.12",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^6.0.1",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typedoc": "^0.27.6",
"typescript": "^5.1.3",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^5.88.0",
"webpack-cli": "^6.0.1"
}
}