This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "@axetroy/vm",
"version": "0.3.8",
"description": "Javascript Interpreter, run Javascript code in ECMAScript",
"main": "./dist/vm.js",
"typings": "./dist/vm.d.ts",
"scripts": {
"test": "rm -rf ./build && tsc -p ./ && nyc ava ./build/test ./build/src/**/*.test.js",
"build": "rm -rf ./dist && webpack --display-error-details --progress --colors",
"start": "npm run build && parcel ./doc/index.html -d vm.js",
"docs": "npm run build && npx parcel build doc/index.html -d ./vm.js --public-url /vm.js",
"format": "prettier --write ./src/**/*.ts ./test/**/*.ts",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"lint": "tslint -p ./ -c tslint.json",
"changelog": "npx conventional-changelog-cli -p angular -i CHANGELOG.md -s -r 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axetroy/vm.js.git"
},
"author": "Axetroy",
"license": "MIT",
"dependencies": {
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"lodash.isfunction": "^3.0.9"
},
"bugs": {
"url": "https://github.com/axetroy/vm.js/issues"
},
"homepage": "https://github.com/axetroy/vm.js#readme",
"devDependencies": {
"@types/babel-core": "6.25.6",
"@types/lodash": "4.14.168",
"@types/node": "9.6.61",
"@types/webpack": "4.41.25",
"ava": "0.25.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"coveralls": "3.1.0",
"husky": "5.0.8",
"normalize.css": "8.0.1",
"nyc": "15.1.0",
"parcel-bundler": "1.12.5",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"react": "17.0.2",
"react-codemirror": "1.0.0",
"react-dom": "17.0.2",
"ts-lint": "4.5.1",
"ts-loader": "8.0.15",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"typescript": "3.8.3",
"webpack": "5.20.0",
"webpack-cli": "3.3.12"
}
}