-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "@pie-framework/math-validation",
"version": "1.0.1",
"description": "New math validation",
"module": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"prepublish": "tsc",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c",
"release": "yarn tsc && semantic-release",
"watch": "rollup -cw",
"test": "jest",
"test:report": "jest --config jest-stare.config.js",
"build:demo": "tsc && yarn rollup -c rollup.config.js",
"demo": "yarn rollup -c rollup.config.js && serve docs"
},
"author": "",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21",
"mathjs": "^9.4.2"
},
"devDependencies": {
"@babel/runtime": "^7.13.10",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-sucrase": "^3.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/fs-extra": "^9.0.1",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.14",
"@types/jest-diff": "^24.3.0",
"@types/mathjs": "^6.0.11",
"@types/minimist": "^1.2.0",
"debug": "^4.3.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^26.4.2",
"jest-diff": "^26.4.2",
"jest-silent-reporter": "^0.2.1",
"jest-stare": "^2.2.1",
"latex-utensils": "^2.0.3",
"latex.js": "^0.12.4",
"minimist": "^1.2.5",
"prettier": "^2.3.2",
"rollup": "^2.50.2",
"rollup-plugin-cleanup": "^3.2.1",
"semantic-release": "^17.4.7",
"serve": "^11.3.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.2.3"
}
}