-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.08 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.08 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
{
"name": "@lcap/basic-template",
"version": "2.2.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "typings/index.d.ts",
"scripts": {
"build:types": "tsc -p build/tsconfig.types.json",
"build:rollup": "rollup -c build/rollup.config.mjs",
"build": "npm run build:rollup && npm run build:types",
"dev": "nodemon --watch src -e 'ts,js,mjs,cjs,json' --exec 'yalc publish --push'",
"zip": "node scripts/zip.js",
"prepublish": "npm run clean && npm run build && npm run test",
"test": "jest --coverage",
"test:update": "jest --updateSnapshot",
"prebuild": "npm run clean",
"postbuild": "npm run zip",
"clean": "rm -rf dist cjs esm typings",
"deploy": "node scripts/deploy.js",
"doc": "typedoc --out ../../docs src"
},
"files": [
"dist",
"typings"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"axios": "0.21.4",
"bignumber.js": "9.1.2",
"crypto-js": "4.2.0",
"decimal.js": "10.4.3",
"lodash": "4.17.21",
"luxon": "^3.7.2",
"mockjs": "1.1.0",
"qs": "6.11.2",
"safe-json-stringify": "^1.2.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@lcap/nasl": "3.13.2-beta.13",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.7.1",
"@types/node": "^20.11.16",
"@types/safe-json-stringify": "^1.1.5",
"date-fns": "2.30.0",
"fast-check": "^3.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"minimist": "^1.2.8",
"nodemon": "^3.0.3",
"rollup": "^4.19.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^6.0.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.26.11",
"typescript": "^5.3.3",
"yalc": "^1.0.0-pre.53"
}
}