-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "nvwajs",
"version": "0.0.3",
"description": "A javascript interpreter.",
"main": "lib/index.js",
"module": "lib/index.js",
"scripts": {
"test": "mocha --require ts-node/register",
"build": "rm -rf lib && webpack --config webpack.config.js"
},
"files": [
"lib"
],
"keywords": [
"nvwa",
"nvwajs",
"nvwa.js",
"javascript-interpreter",
"javascript interpreter",
"js-interpreter",
"js interpreter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/1eeing/Nvwa.js.git"
},
"author": "1eeing <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/1eeing/Nvwa.js/issues"
},
"homepage": "https://github.com/1eeing/Nvwa.js#readme",
"dependencies": {
"@babel/parser": "^7.9.4",
"@babel/types": "^7.9.0"
},
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"mocha": "^7.1.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}