-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 KB
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
{
"name": "deviantart.ts",
"version": "0.3.1",
"description": "Wrapper for the DeviantArt API with typings",
"main": "dist/deviantart.js",
"types": "dist/deviantart.d.ts",
"scripts": {
"start": "tsc && node dist/start.js",
"test": "ts-mocha --timeout 30000 -p tsconfig.json test/**/*.spec.ts",
"docs": "typedoc --out docs ./",
"prepublishOnly": "tsc"
},
"keywords": [
"deviantart",
"typescript",
"ts",
"api",
"art",
"anime"
],
"repository": {
"type": "git",
"url": "https://github.com/Moestash/deviantart.ts"
},
"author": "Moestash",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/html-entities": "^1.2.16",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.1",
"@types/xml2js": "^0.4.5",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"gulp": "^4.0.2",
"mocha": "^6.2.1",
"ts-mocha": "^6.0.0",
"typedoc": "^0.15.0",
"typedoc-dark-theme": "0.0.11",
"typescript": "^3.6.4"
},
"dependencies": {
"axios": "^0.21.1",
"html-entities": "^1.2.1",
"xml2js": "^0.4.22"
}
}