Skip to content

Commit 7ca7961

Browse files
committed
build(package): initial version
1 parent 8efdf59 commit 7ca7961

File tree

1 file changed

+96
-0
lines changed

1 file changed

+96
-0
lines changed

package.json

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
{
2+
"name": "@octokit/core",
3+
"version": "0.0.0-development",
4+
"publishConfig": {
5+
"access": "public"
6+
},
7+
"description": "Extendable client for GitHub's REST & GraphQL APIs",
8+
"main": "index.js",
9+
"scripts": {
10+
"build": "pika build",
11+
"lint": "prettier --check '{src,test}/**/*' README.md package.json",
12+
"lint:fix": "prettier --write '{src,test}/**/*' README.md package.json",
13+
"pretest": "npm run -s lint",
14+
"test": "jest --coverage"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/octokit/core.js.git"
19+
},
20+
"keywords": [
21+
"octokit",
22+
"github",
23+
"api",
24+
"sdk",
25+
"toolkit"
26+
],
27+
"author": "Gregor Martynus (https://github.com/gr2m)",
28+
"license": "MIT",
29+
"bugs": {
30+
"url": "https://github.com/octokit/core.js/issues"
31+
},
32+
"homepage": "https://github.com/octokit/core.js#readme",
33+
"devDependencies": {
34+
"@pika/pack": "^0.5.0",
35+
"@pika/plugin-build-node": "^0.6.0",
36+
"@pika/plugin-build-web": "^0.6.0",
37+
"@pika/plugin-ts-standard-pkg": "^0.6.0",
38+
"@types/jest": "^24.0.17",
39+
"@types/node": "^12.7.1",
40+
"jest": "^24.8.0",
41+
"prettier": "^1.18.2",
42+
"ts-jest": "^24.0.2",
43+
"typescript": "^3.5.3",
44+
"semantic-release": "^15.13.19"
45+
},
46+
"jest": {
47+
"preset": "ts-jest",
48+
"coverageThreshold": {
49+
"global": {
50+
"statements": 100,
51+
"branches": 100,
52+
"functions": 100,
53+
"lines": 100
54+
}
55+
}
56+
},
57+
"files": [
58+
"lib"
59+
],
60+
"@pika/pack": {
61+
"pipeline": [
62+
[
63+
"@pika/plugin-ts-standard-pkg"
64+
],
65+
[
66+
"@pika/plugin-build-node"
67+
],
68+
[
69+
"@pika/plugin-build-web"
70+
]
71+
]
72+
},
73+
"release": {
74+
"plugins": [
75+
"@semantic-release/commit-analyzer",
76+
"@semantic-release/release-notes-generator",
77+
"@semantic-release/github",
78+
[
79+
"@semantic-release/npm",
80+
{
81+
"pkgRoot": "./pkg"
82+
}
83+
],
84+
[
85+
"semantic-release-plugin-update-version-in-files",
86+
{
87+
"files": [
88+
"dist-web/*",
89+
"dist-node/*",
90+
"*/version.*"
91+
]
92+
}
93+
]
94+
]
95+
}
96+
}

0 commit comments

Comments
 (0)