-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "sequence-shorten",
"author": "Hax0r <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/webhacking/sequence-shorten.git"
},
"version": "1.0.3",
"description": "Shorten your sequence number or hash key",
"main": "./dist/sequence-shorten.js",
"types": "dist/sequence-shorten.d.ts",
"scripts": {
"format": "./node_modules/.bin/prettier --write \"**/*.ts\"",
"test": "./node_modules/.bin/jest --testPathIgnorePatterns dist",
"coverage": "./node_modules/.bin/jest --coverage --testPathIgnorePatterns dist",
"post-coverage": "./node_modules/.bin/nyc report --reporter=json > coverage/coverage.json"
},
"keywords": [
"URL shortener",
"shortener",
"shorten",
"URL 짧은 주소",
"URL短地址",
"URLアドレス"
],
"license": "ISC",
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^25.0.0",
"codecov": "^3.2.0",
"nyc": "^14.0.0",
"typescript": "^3.3.4000"
},
"devDependencies": {
"jest": "25.2.7",
"prettier": "1.17.0",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts$",
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}