-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.76 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
{
"name": "import-path-rewrite",
"version": "0.0.1",
"description": "import-path-rewrite description",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"bin": "lib/bin.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint -p tsconfig.tslint.json",
"jest": "jest",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run jest && npm run docs",
"clean": "rimraf lib/* es6/*",
"build": "npm run clean && tsc && tsc -p tsconfig.es6.json && npm run rewrite",
"prepublish": "npm run build",
"mocha": "mocha -r ts-node/register test/*.ts",
"docs": "docs-ts",
"rewrite": "ts-node rewrite.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/import-path-rewrite.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/import-path-rewrite/issues"
},
"homepage": "https://github.com/gcanti/import-path-rewrite",
"dependencies": {
"chalk": "^3.0.0",
"glob": "^7.1.6",
"fp-ts": "^2.0.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^22.2.2",
"@types/node": "^12.6.8",
"docs-ts": "^0.3.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.7.3"
},
"tags": [],
"keywords": []
}