-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "js-math-expression",
"version": "1.0.1",
"main": "dist/mep.cjs.js",
"module": "dist/mep.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"description": "a simple parser for javascript math expression",
"repository": "github:qiuquanwu/math-expression-parse",
"keywords": [
"math",
"expression",
"math-expression-parse",
"vika",
"数学公式解析"
],
"devDependencies": {
"@rollup/plugin-strip": "^2.1.0",
"@types/lodash": "^4.14.178",
"@types/ms": "^0.7.31",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"rollup": "^2.68.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test:doc": "mocha --reporter=doc | cat docs/head.html - docs/tail.html > docs/test.html",
"test": "mocha",
"pretest": "npm run build"
},
"dependencies": {
"@types/lodash-es": "^4.17.6",
"global": "^4.4.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21"
}
}