-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.48 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
{
"name": "babel-plugin-optional-chaining-retro",
"version": "0.0.1",
"description": "A retro implementation of optional chaining",
"main": "dist/src/index.js",
"author": "Eli Gao <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/helper-plugin-test-runner": "^7.8.3",
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/plugin-external-helpers": "^7.10.4",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-spread": "^7.11.0",
"@babel/types": "^7.8.3",
"@types/babel__core": "^7.1.3",
"@types/dlv": "^1.1.1",
"@types/jest": "^24.9.0",
"dlv": "^1.1.3",
"lodash.get": "^4.4.2",
"ts-jest": "^24.3.0",
"typescript": "^3.7.5"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:clear": "find . -name 'output.js' -exec rm {} \\;",
"link-self": "yarn link; yarn link 'babel-plugin-optional-chaining-retro';",
"unlink-self": " yarn unlink 'babel-plugin-optional-chaining-retro';yarn unlink;"
},
"devDependencies": {
"@babel/helper-module-imports": "^7.10.4",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"babel-plugin-tester": "^9.2.0",
"dts-gen": "^0.6.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1"
}
}