-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "tf2-currencies",
"version": "1.2.4",
"description": "Tool for handling Team Fortress 2 currencies",
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint ./",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"report": "npm test && istanbul report",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "np --no-cleanup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nicklason/node-tf2-currencies.git"
},
"author": {
"name": "Nicklas Marc Pedersen",
"url": "https://nicklas.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Nicklason/node-tf2-currencies/issues"
},
"homepage": "https://github.com/Nicklason/node-tf2-currencies#readme",
"dependencies": {
"pluralize": "^7.0.0"
},
"devDependencies": {
"assert": "^1.4.1",
"coveralls": "^3.0.3",
"eslint": "^5.15.3",
"eslint-config-google": "^0.9.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.10"
}
}