forked from darkskyapp/skycons
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "skycons-ts",
"version": "1.0.0",
"description": "Improved Skycons by Darksky with typings for TypeScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:andipaetzold/skycons-ts.git"
},
"author": {
"name": "Andi Pätzold",
"email": "github@andipaetzold.com",
"url": "https://github.com/andipaetzold"
},
"bugs": {
"url": "https://github.com/andipaetzold/skycons-ts/issues"
},
"homepage": "https://github.com/andipaetzold/skycons-ts#readme",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@tsconfig/recommended": "1.0.7",
"semantic-release": "19.0.2",
"ttypescript": "1.5.13",
"typescript": "4.9.5",
"typescript-transform-extensions": "1.0.1"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "ttsc",
"semantic-release": "semantic-release"
}
}