-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
{
"name": "unitary-math-parser",
"version": "1.0.0",
"description": "A math parser and evaluator that can deal with units",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/**/*.{js,d.ts}"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"start": "node build/index.js",
"debug": "node --inspect-brk build/index.js",
"test": "jest -i",
"test-watch": "jest --watch -i",
"test-watch-debug": "node --inspect-brk ../../node_modules/jest/bin/jest.js --runInBand --watch --config=\"jest.config.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TarVK/model-react.git"
},
"keywords": [
"math",
"parser",
"units"
],
"author": "Tar van Krieken",
"license": "MIT",
"bugs": {
"url": "https://github.com/TarVK/model-react/issues"
},
"homepage": "https://github.com/TarVK/model-react#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/uuid": "^8.3.1",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-loader": "^6.0.2",
"typescript": "^4.0.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.5.0"
},
"dependencies": {
"chevrotain": "^9.0.2",
"uuid": "^8.3.2"
}
}