-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1004 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
38
{
"name": "calpheonjs",
"version": "1.0.2",
"description": "Interface to retrieve data about the Black Desert Online game.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Marcelo Perrella <marceloclperrella@gmail.com>",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/marceloclp/calpheonjs"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"start": "node ./dist/index.js",
"test": "mocha -r ts-node/register tests/**/*.spec.ts --reporter min",
"prepublish": "tsc"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-subset": "^1.3.3",
"@types/cheerio": "^0.22.18",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"mocha": "^7.2.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3"
}
}