-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "jsvm2",
"version": "1.2.5",
"description": "Javascript Interpreter implemented by Javascript",
"main": "lib/index.js",
"module": "lib/es.es6.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"test:coverage": "jest --coverage",
"test": "jest",
"test:debug": "npx --node-arg=--inspect-brk jest -i",
"babel": "babel --config-file babel.config.js ./babel/src --out-dir ./babel/result",
"typecheck": "tsc --project tsconfig.json --noEmit #",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [],
"author": "ximing",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/generator": "^7.16.0",
"@babel/parser": "^7.16.4",
"@babel/plugin-external-helpers": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-do-expressions": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-decorators": "^7.16.0",
"@babel/plugin-syntax-do-expressions": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@babel/traverse": "^7.16.3",
"@babel/types": "^7.16.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@rollup/plugin-url": "^6.1.0",
"@types/babel-generator": "^6.25.3",
"@types/babel-traverse": "^6.25.7",
"@types/babel-types": "^7.0.11",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.4.2",
"babel-plugin-import": "^1.8.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-power-assert": "^3.0.0",
"benchmark": "^2.1.4",
"conventional-changelog-cli": "^2.0.34",
"core-js": "^3.19.2",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-html-reporter": "^0.7.4",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rollup": "^2.60.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"terser": "^5.12.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^5.0.3"
},
"dependencies": {},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=10"
},
"files": [
"lib"
]
}