-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.88 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
64
65
66
{
"name": "babel-remove-types",
"version": "1.0.0",
"keywords": [
"typescript",
"babel",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/ember-cli/babel-remove-types"
},
"license": "MIT",
"contributors": [
"Chris Freeman",
"Chris Manson <[email protected]>"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "index.d.ts",
"files": [
"*.d.ts",
"*.d.ts.map",
"dist",
"src"
],
"scripts": {
"build": "pnpm clean && pnpm ts:all",
"clean": "rimraf ./*.d.ts ./*.d.ts.map ./dist",
"lint": "eslint src test",
"prepare": "pnpm build",
"prepublishOnly": "pnpm test && pnpm build",
"postpublish": "pnpm clean",
"test": "jest",
"test:watch": "jest --watch",
"ts:all": "pnpm ts:esm && pnpm ts:cjs && pnpm ts:typedefs",
"ts:cjs": "tsc -p ts/cjs.tsconfig.json",
"ts:esm": "tsc -p ts/esm.tsconfig.json",
"ts:typedefs": "tsc -p ts/types.tsconfig.json && mv defs/* . && rimraf defs"
},
"dependencies": {
"@babel/core": "^7.16.10",
"@babel/plugin-syntax-decorators": "^7.16.7",
"@babel/plugin-transform-typescript": "^7.16.8",
"prettier": "^2.5.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.18",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"release-plan": "^0.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}