-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
77 lines (77 loc) · 2.01 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
77
{
"name": "eval5",
"version": "1.4.8",
"description": "A JavaScript interpreter written in JavaScript",
"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:version bundle:prod bundle:banner",
"build:lib": "tsc",
"build:cjs": "tsc --module commonjs --target ES5 --outDir dist/cjs --declaration false",
"build:esm": "tsc --module esnext --target ES6 --outDir dist/esm --declaration false",
"clear": "rimraf lib dist umd",
"bundle:dev": "rollup -c",
"bundle:prod": "rollup -c rollup.config.min.mjs",
"bundle:banner": "node scripts/banner.js",
"bundle:version": "node scripts/version.js",
"prepublishOnly": "run-s test build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bplok20010/eval5.git"
},
"keywords": [
"interpreter",
"js-interpreter",
"eval",
"Function",
"vm",
"eval5"
],
"files": [
"umd",
"lib",
"dist",
"*.md"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bplok20010/eval5/issues"
},
"homepage": "https://github.com/bplok20010/eval5#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"rollup-plugin-terser": "^7.0.2",
"@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",
"rollup": "^4.20.0",
"rimraf": "^3.0.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@types/acorn": "^4.0.5",
"@types/estree": "0.0.41",
"acorn": "^7.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"
]
}