-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "estime",
"version": "1.3.0",
"description": "estime = ecmascript + runtime, in javascipt(es5) environment",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "tsc -w",
"build": "run-s clear build:* bundle:dev bundle:prod",
"build:lib": "tsc",
"build:cjs": "babel lib --config-file=./babel.config.js --out-dir dist/cjs",
"build:esm": "babel lib --config-file=./babel.config.esm.js --out-dir dist/esm",
"clear": "rimraf lib dist umd",
"bundle:dev": "packez bundle ./src/index.ts -d umd -c",
"bundle:prod": "packez bundle ./src/index.ts -d umd --state prod",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IAIAE/estime.git"
},
"keywords": [
"interpreter",
"js-interpreter",
"eval",
"Function",
"vm",
"eval5"
],
"files": [
"umd",
"lib",
"dist",
"*.md"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/IAIAE/estime/issues"
},
"homepage": "https://github.com/IAIAE/estime#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@types/estree-jsx": "0.0.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^24.0.25",
"babel-plugin-search-and-replace": "^1.0.1",
"babel-preset-packez": "^1.0.0",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"packez": "^3.1.0",
"react": "^16.13.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@types/acorn": "^4.0.5",
"@types/estree": "0.0.41",
"acorn": "^7.4.1",
"acorn-class-fields": "^0.3.6",
"acorn-jsx": "^5.2.0",
"acorn-static-class-features": "^0.2.3",
"acorn-walk": "^8.1.0"
},
"browserslist": [
">=0.25%",
"not dead",
"not op_mini all",
"not Android 4.4.3-4.4.4",
"not ios_saf < 10",
"not Chrome < 50",
"firefox ESR"
]
}