forked from webhacking/sequence-shorten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "sequence-shorten",
"version": "1.0.0",
"description": "Shorten your sequence number or hash key",
"main": "./dist/sequence-shorten.js",
"scripts": {
"format": "./node_modules/.bin/prettier --write \"**/*.ts\"",
"test": "./node_modules/.bin/jest --testPathIgnorePatterns dist"
},
"keywords": [
"URL shortener",
"shortener",
"shorten",
"URL 짧은 주소",
"URL短地址",
"URLアドレス"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.11",
"typescript": "^3.3.4000"
},
"devDependencies": {
"jest": "^24.5.0",
"prettier": "^1.16.4",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}