-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.25 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.25 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cloudlock",
"version": "1.0.0",
"description": "JavaScript client for the FORKZERO Cloud Lock service",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"compile": "tsc --declaration",
"test": "nyc mocha",
"build": "tsc",
"watch": "tsc --watch",
"test-watch": "mocha --growl --watch --watch-extensions ts",
"doc": "typedoc --out docs ./src",
"coverage": "nyc report --reporter=json; codecov -f coverage/*.json",
"check": "gts check",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"mocha": {
"diff": true,
"extension": [
"ts"
],
"opts": "./test/mocha.opts",
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/forkzero/cloud-lock-js.git"
},
"keywords": [
"javascript",
"nodejs",
"lock",
"mutex",
"semaphore"
],
"author": "George Moon",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/forkzero/cloud-lock-js/issues"
},
"homepage": "https://github.com/forkzero/cloud-lock-js#readme",
"dependencies": {
"axios": "^0.19.0",
"https": "^1.0.0",
"retry-axios": "^1.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.1",
"@types/sinon": "^7.5.0",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.5",
"growl": "^1.10.5",
"gts": "^1.1.0",
"json-loader": "^0.5.7",
"mocha": "^6.2.2",
"nock": "^11.5.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.13",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.6.4"
}
}