-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "math-expression-evaluator",
"version": "0.0.0-development",
"description": "A flexible math expression evaluator",
"main": "dist/es/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "mocha",
"prepare": "husky install",
"build:code:watch": "rollup -c -w",
"build:code": "rollup -c",
"build:types:watch": "tsc --watch --project ./tsconfig.types.json",
"build:types": "tsc --project ./tsconfig.types.json",
"build:watch": "run-p build:code:watch build:types:watch",
"build": "run-p build:code build:types"
},
"repository": {
"type": "git",
"url": "https://github.com/redhivesoftware/math-expression-evaluator.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"math",
"expression",
"evaluator",
"parser"
],
"author": "bugwheels94<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redhivesoftware/math-expression-evaluator/issues"
},
"homepage": "https://github.com/redhivesoftware/math-expression-evaluator#readme",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^6.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fast-glob": "^3.2.12",
"husky": "^7.0.4",
"mocha": "^2.2.5",
"npm-run-all": "^4.1.5",
"replace": "^1.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2",
"typescript": "^4.9.4",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}