-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.81 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.81 KB
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
{
"name": "@pyramation/babel-ast-example",
"version": "0.0.1",
"description": "babel ast example",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/pyramation/babel-ast-example#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
"typings": "types/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"types",
"main",
"module"
],
"scripts": {
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build": "npm run build:module && npm run build:main",
"build:ts": "tsc --project ./tsconfig.json",
"prepublish": "npm run build",
"dev": "cross-env NODE_ENV=development babel-node src/index",
"watch": "cross-env NODE_ENV=development babel-watch src/index",
"lint": "eslint src --fix",
"test": "jest",
"test:ast": "cross-env NODE_ENV=development babel-node scripts/test-ast.js",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pyramation/babel-ast-example"
},
"keywords": [],
"bugs": {
"url": "https://github.com/pyramation/babel-ast-example/issues"
},
"jest": {
"testPathIgnorePatterns": [
"main/",
"module/",
"types/"
]
},
"devDependencies": {
"@babel/cli": "7.17.10",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.5",
"@types/jest": "^28.1.1",
"ast-stringify": "0.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "28.1.1",
"babel-watch": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"jest-in-case": "^1.0.2",
"prettier": "^2.7.0",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
},
"dependencies": {
"@babel/core": "7.18.5",
"@babel/generator": "7.18.2",
"@babel/parser": "^7.18.5",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-proposal-export-default-from": "7.17.12",
"@babel/plugin-proposal-object-rest-spread": "7.18.0",
"@babel/plugin-transform-runtime": "7.18.5",
"@babel/preset-env": "7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@babel/traverse": "7.18.5",
"@babel/types": "7.18.4",
"@osmonauts/ast": "^0.3.20",
"@osmonauts/proto-parser": "^0.4.13",
"@osmonauts/types": "^0.3.7",
"@types/parse-package-name": "0.1.0"
}
}