-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.59 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
67
68
69
{
"name": "gist-box",
"version": "0.3.1",
"description": "A helper class for updating a single-file Gist",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.json",
"lint": "tslint --project tests",
"test": "tsc --noEmit -p tests && jest --coverage && npm run lint",
"test:update": "tsc --noEmit -p tests && jest --coverage -u && npm run lint",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JasonEtco/gist-box.git"
},
"keywords": [
"github",
"github api"
],
"author": "Jason Etcovitch <jasonetco@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonEtco/gist-box/issues"
},
"homepage": "https://github.com/JasonEtco/gist-box#readme",
"dependencies": {
"@octokit/request": "^5.3.4"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"jest": "^25.2.7",
"nock": "^12.0.3",
"standard": "^14.3.3",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"<rootDir>/lib/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.test.(ts|js)"
],
"globals": {
"ts-jest": {
"babelConfig": false
}
}
}
}