-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "query-ts",
"version": "0.9.3",
"description": "A jQuery like library based on XStream and FP-TS.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean && npm run lint && npm run compile",
"clean": "rm -rf lib/",
"compile": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mblink/query-ts.git"
},
"keywords": [
"jQuery",
"FP-TS",
"XStream",
"TypeScript",
"TS",
"DOM",
"selector"
],
"contributors": [
"Justin Leider <[email protected]>",
"Matt Dziuban <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mblink/query-ts/issues"
},
"homepage": "https://github.com/mblink/query-ts",
"dependencies": {
"escape-html": "~1.0.3",
"ts-http-status-codes": "~1.0.1"
},
"devDependencies": {
"@types/escape-html": "~0.0.20",
"autobind-decorator": "~2.4.0",
"fp-ts": "^2.6.1",
"tslint": "~6.1.2",
"typescript": "~3.9.2",
"xstream": "^11.11.0"
},
"peerDependencies": {
"fp-ts": "^2.6.1",
"xstream": "^11.11.0"
}
}