-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.32 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": "ts-transform-paths",
"version": "0.0.0-development",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": "Igor Kuritsin <[email protected]>",
"files": [
"dist/"
],
"scripts": {
"test": "cross-env NODE_NO_WARNINGS=1 jasmine-ts \"spec/src/**/*.spec.ts\"",
"prettier": "prettier --write \"src/**/*.{js,ts}\" \"spec/src/**/*.ts\" \"spec/fixtures/actual/**/*.{js,ts}\"",
"prepublishOnly": "rimraf dist && tsc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/OniVe/ts-transform-paths.git"
},
"bugs": {
"url": "https://github.com/OniVe/ts-transform-paths/issues"
},
"keywords": [
"paths",
"transform",
"tsconfig",
"typescript"
],
"pre-commit": [
"prettier",
"test"
],
"dependencies": {},
"devDependencies": {
"@types/glob": "^7.0.0",
"@types/jasmine": "^3.0.0",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.0",
"cross-env": "^5.0.0",
"dotenv-cli": "^1.4.0",
"glob": "^7.0.0",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.0",
"jasmine-ts": "^0.4.0",
"prettier": "^2.0.0",
"rimraf": "^2.0.0",
"semantic-release": "^19.0.5",
"ts-node": "^7.0.0",
"tsconfig": "^7.0.0",
"typescript": "^4.9.4"
}
}