-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "exprtk",
"version": "0.0.1",
"description": "ExprTk compiled to webassembly",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/timkpaine/exprtk.js"
},
"license": "Apache-2.0",
"emscripten": "2.0.29",
"engines": {
"node": ">=8.12.0"
},
"exports": {
".": {
"node": "./dist/cjs/exprtk.node.js"
},
"./dist/": "./dist/",
"./cjs/": "./dist/cjs/",
"./esm/": "./dist/esm/",
"./src/": "./src/",
"./package.json": "./package.json"
},
"scripts": {
"postinstall": "node scripts/install_emsdk.js",
"build": "npm-run-all build:*",
"build:cpp": "node scripts/run_emsdk.js node src/cpp/exprtkjs/build.js",
"build:babel": "babel src/js --source-maps --out-dir dist/esm",
"fix": "yarn lint --fix",
"lint": "eslint --ext js src/",
"test": "node scripts/test.js",
"clean": "node scripts/clean.js"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"cpx": "^1.5.0",
"dotenv": "^10.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"resolutions": {
"braces": "^2.3.1",
"glob-parent": "^5.1.2",
"set-value": "^4.0.1"
}
}