-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.51 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
{
"name": "okuna",
"version": "0.3.0",
"description": "Node.js API bindings for the Okuna social network.",
"main": "lib/Okuna.js",
"repository": {
"type": "git",
"url": "git+https://github.com/OkunaOrg/okuna-js.git"
},
"keywords": [
"okuna",
"social",
"network",
"api"
],
"author": "@jozsefsallai",
"license": "MIT",
"bugs": {
"url": "https://github.com/OkunaOrg/okuna-js/issues"
},
"files": [
"/dist",
"/lib"
],
"homepage": "https://github.com/OkunaOrg/okuna-js#readme",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/nock": "^10.0.3",
"@types/node": "^12.7.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"axios": "^0.19.0",
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1",
"isomorphic-form-data": "^2.0.0",
"tslib": "^1.10.0"
},
"scripts": {
"build": "rm -rf lib && tsc",
"docs": "typedoc",
"lint": "tslint --project .",
"prepack": "npm run build && webpack",
"prepare": "npm run build && webpack",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test:cover": "nyc --reporter=lcov --reporter=text npm run test",
"watch": "npm run build -- --watch"
}
}