-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 950 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
35
36
37
{
"name": "pipe-ts",
"main": "./target/index.js",
"typings": "./target/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/unsplash/pipe-ts.git"
},
"keywords": [
"typescript",
"ts",
"pipe",
"functional",
"fp"
],
"version": "0.0.9",
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"compile": "rm -rf ./target/ && tsc",
"test": "npm run compile && node --require source-map-support/register ./target/tests.js",
"format": "prettier --write './**/*.{ts,tsx,js,json,md}' '.prettierrc'",
"prepublishOnly": "npm run test && npm run lint && npm run compile"
},
"files": [
"src",
"target"
],
"devDependencies": {
"@types/node": "^12.0.10",
"prettier": "^1.18.2",
"source-map-support": "^0.5.12",
"tslint": "^5.18.0",
"tslint-language-service": "^0.9.9",
"tslint-no-unused": "^0.2.0-alpha.1",
"typescript": "^3.5.2"
}
}