-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.65 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
{
"name": "acorn-typescript",
"version": "1.4.13",
"description": "Alternative, TypeScript parser",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"build": "microbundle --define process.env.NODE_ENV=production --no-sourcemap --tsconfig ./tsconfig.json --format esm,cjs",
"test": "jest --collect-coverage --silent",
"test:test262": "ts-node -T __test__/run_test262.ts",
"release-major": "yarn build && yarn test && standard-version --release-as major",
"release-minor": "yarn build && yarn test && standard-version --release-as minor",
"release-patch": "yarn build && yarn test && standard-version --release-as patch"
},
"exports": {
".": [
{
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./lib/index.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TyrealHu/acorn-typescript.git"
},
"author": "tyrealhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/TyrealHu/acorn-typescript/issues"
},
"homepage": "https://github.com/TyrealHu/acorn-typescript#readme",
"devDependencies": {
"@types/jest": "^24.1.0",
"acorn": "^8.9.0",
"acorn-jsx": "^5.3.2",
"jest": "^24.1.0",
"microbundle": "^0.15.1",
"standard-version": "^9.5.0",
"ts-jest": "^26.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"test262": "git+https://github.com/tc39/test262.git#dac69563480b9f22709fd49d61a32b3a0513b6b1",
"test262-parser-runner": "^0.5.0"
},
"peerDependencies": {
"acorn": ">=8.9.0"
}
}