-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@adifkz/exp-p",
"version": "0.0.0-development",
"description": "expression parser",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/adyfk/exp-p.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"build:typescript": "npx tsc --emitDeclarationOnly",
"build:stable": "node scripts/build.js stable",
"build:copy-files": "node scripts/copy-files.js",
"build": "rimraf dist/* && rimraf types/* && npm run build:stable && npm run build:typescript && npm run build:copy-files",
"test": "jest",
"test:all": "jest --watchAll",
"semantic-release": "semantic-release",
"commit": "cz",
"publish": "npm run build && cd ./dist && npm publish --access public"
},
"keywords": [],
"author": "Adi Fatkhurozi <ady.fatkhurozi@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/runtime": "^7.22.3",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"semantic-release": "^21.0.3",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"release": {
"branches": [
"master",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
"@semantic-release/github"
],
"ci": true
},
"dependencies": {
"benny": "^3.7.1",
"expressionparser": "^1.1.5",
"moment": "^2.29.4"
}
}