This repository has been archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@achievement-watcher/celes",
"author": {
"name": "Marc Solé",
"email": "[email protected]",
"url": "https://github.com/msolefonte"
},
"version": "1.1.0",
"license": "GPL-3.0",
"description": "File and registry scraper that obtains and stores game achievements, whatever the origin",
"keywords": [
"achievements",
"achievement-watcher",
"games",
"scraper",
"trophies"
],
"bugs": {
"url": "https://github.com/msolefonte/celes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/msolefonte/celes"
},
"main": "dist/index.js",
"types": "dist/index.d.js",
"scripts": {
"build": "tsc && ncp src/types dist/types",
"build:clean": "rimraf dist && tsc && ncp src/types dist/types",
"check-dependencies": "npm-check --ignore ts-node",
"check-dependencies:update": "npm-check --update",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "mocha -r ts-node/register 'tests/**/*.test.ts' --timeout 30000 --require mocha-steps",
"test:coverage": "nyc --reporter=html --reporter=text npm run test",
"test:coverage:lcov": "nyc --reporter=lcovonly npm run test"
},
"dependencies": {
"@types/fs-ext": "^2.0.0",
"@types/ini": "^1.3.30",
"@types/lockfile": "^1.0.1",
"@types/lodash.omit": "^4.5.6",
"@types/normalize-path": "^3.0.0",
"@types/rimraf": "^3.0.0",
"@types/steamid": "^1.1.0",
"@types/xml2js": "^0.4.5",
"cloud-client": "git://github.com/msolefonte/cloud-nodejs-client.git#alpha",
"crc-32": "^1.2.0",
"fast-glob": "^3.2.4",
"got": "^11.8.0",
"js-ini": "^1.2.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"normalize-path": "^3.0.0",
"regodit": "git+https://github.com/xan105/node-cgo-regodit.git",
"steamid": "^1.1.3",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/got": "^9.6.11",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-plugin-sort-class-members": "^1.8.0",
"mocha": "^8.2.1",
"mocha-steps": "^1.3.0",
"ncp": "^2.0.0",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}