-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.96 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.96 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
{
"name": "@lifesg/ccube-lib",
"version": "0.0.1-alpha.3",
"description": "Common utilities and interfaces for CCUBE",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"scripts": {
"build": "npm run rollup && npm run post:build",
"lint": "eslint '**/*.{js,ts}' --quiet --fix",
"post:build": "node ./scripts/post-build.js",
"prepare": "husky",
"publish-lib": "npm publish ./dist",
"rollup": "rm -rf dist && rollup --bundleConfigAsCjs -c",
"test": "jest --coverage"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --quiet"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/LifeSG/ccube-lib.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LifeSG/ccube-lib/issues"
},
"homepage": "https://github.com/LifeSG/ccube-lib#readme",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^14.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"rollup": "^4.10.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3",
"typescript-eslint": "^7.0.1"
}
}