-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 807 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 807 Bytes
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
{
"name": "math-parser",
"version": "0.1.0",
"description": "A configurable parser for math expressions",
"license": "Apache-2.0",
"main": "js/main.js",
"files": [
"/js",
"/ts",
"tsconfig.json",
"tslint.json"
],
"repository": {
"type": "git",
"url": "https://github.com/dpvc/math-parser"
},
"keywords": [
"math",
"equation"
],
"scripts": {
"clean:js": "npx rimraf js",
"clean": "npm run --silent clean:js",
"precompile": "npm run --silent clean:js",
"compile": "npx tsc"
},
"devDependencies": {
"rimraf": "^3.0.2",
"tslint": "^6.1.1",
"tslint-jsdoc-rules": "^0.2.0",
"tslint-unix-formatter": "^0.2.0",
"typescript": "~3.8.3",
"typescript-tools": "^0.3.1"
},
"dependencies": {
"esm": "^3.2.25"
}
}