-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
58
59
60
61
62
63
64
65
66
{
"name": "@hiswe/etherpad-api",
"version": "2.0.0",
"description": "Promised based query to etherpad-lite",
"keywords": [
"etherpad",
"api"
],
"main": "./dist/query-etherpad.js",
"types": "./dist/query-etherpad.d.ts",
"engines": {
"node": ">=6.15.1"
},
"scripts": {
"test": "nyc ava",
"build": "del dist && rollup --config",
"release": "npm run build && np --no-cleanup",
"toc": "doctoc *.md --github --notitle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hiswe/query-etherpad.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"author": "hiswe <hiswehalya@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hiswe/query-etherpad/issues"
},
"homepage": "https://github.com/Hiswe/query-etherpad#readme",
"dependencies": {
"@types/http-errors": "^1.6.1",
"@types/is-url": "^1.2.28",
"@types/request-promise-native": "^1.0.15",
"compare-versions": "^3.4.0",
"http-errors": "^1.7.1",
"is-url": "^1.2.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@types/node": "^10.12.12",
"ava": "^1.0.0-beta.8",
"del-cli": "^1.1.0",
"doctoc": "^1.4.0",
"lodash.merge": "^4.6.1",
"nock": "^10.0.4",
"nyc": "^13.1.0",
"rollup": "^0.67.4",
"rollup-plugin-typescript2": "^0.18.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"test",
"**/*.js"
]
}
}