-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "pikajs",
"version": "0.0.7",
"description": "Let's build a little Javascript interpreter together",
"main": "lib/index.js",
"bin": "lib/bin.js",
"scripts": {
"build": "babel src -d lib --extensions \".ts\" --source-maps",
"type": "tsc --emitDeclarationOnly -p ./tsconfig.json ",
"check": "tsc --noEmit -p ./tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "npm run type && npm run build",
"test": "npm run build && node tests/run-test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/generator": "^7.7.7",
"@babel/parser": "^7.7.5",
"@babel/traverse": "^7.7.4",
"@babel/types": "^7.7.4",
"chalk": "^3.0.0",
"cliui": "^6.0.0",
"tempfile": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@babel/register": "^7.7.4",
"@types/babel__generator": "^7.6.1",
"@types/babel__traverse": "^7.0.8",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"install": "^0.13.0",
"npm": "^6.13.2",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
],
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}