-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "tswrap",
"version": "1.0.4",
"description": "Random assortment of Typescript utilities, wrappers, and types.",
"main": "build/tswrap.js",
"types": "build/tswrap.d.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"pretest": "tslint -p .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SomeoneWeird/tswrap.git"
},
"author": "Adam Brady <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/SomeoneWeird/tswrap/issues"
},
"homepage": "https://github.com/SomeoneWeird/tswrap#readme",
"devDependencies": {
"@types/node": "^12.0.2",
"tslint": "^5.16.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.5"
},
"dependencies": {
"axios": "^0.18.1",
"fp-ts": "^1.18.2",
"io-ts": "^1.8.6"
}
}