-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "couponjs",
"version": "0.15.0",
"description": "Generate coupons.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"bootstrap": "mkdir -p output",
"project:init": "mkdir -p output && npm i && npm run test",
"test": "jest -c jest.config.json",
"precommit": "npm run lint && npm run test",
"build": "tsup",
"all": "rm -rf dist && npm run precommit && npm run build",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "npx eslint -c .eslintrc.json src",
"lint:fix:src": "npx eslint --fix -c .eslintrc.json src",
"lint:test": "npx eslint -c .eslintrc.json test",
"lint:fix:test": "npx eslint --fix -c .eslintrc.json test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusufshakeel/couponjs.git"
},
"keywords": [
"coupon",
"js",
"ts",
"javascript",
"typescript",
"nodejs",
"node"
],
"author": "Yusuf Shakeel",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusufshakeel/couponjs/issues"
},
"homepage": "https://github.com/yusufshakeel/couponjs#readme",
"engines": {
"node": ">12.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"madge": "^6.0.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"tsup": "^8.0.2",
"typescript": "^5.0.4"
}
}