This repository has been archived by the owner on Apr 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "lockr",
"version": "1.0.3",
"description": "Apply application update locks by matching a URL response to a regular expression",
"homepage": "https://github.com/balena-labs-projects/lockr-block",
"keywords": [
"balena",
"typescript"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/balena-labs-projects/lockr-block.git"
},
"bugs": {
"url": "https://github.com/balena-labs-projects/lockr-block/issues"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/"
],
"private": true,
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && tsc",
"lint": "balena-lint --typescript lib tests",
"lint:fix": "balena-lint --typescript --fix lib tests",
"test:node": "echo 'no tests found!' && exit 0",
"test": "npm run build && npm run lint && npm run test:node",
"test:fast": "npm run build && npm run test:node",
"prepack": "npm run build",
"start": "node build/index.js"
},
"devDependencies": {
"@balena/lint": "6.2.0",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "7.1.5",
"@types/lockfile": "^1.0.2",
"@types/mocha": "9.1.1",
"@types/node": "^18.0.6",
"@types/node-fetch": "^2.6.2",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"husky": "4.3.8",
"lint-staged": "13.0.3",
"mocha": "8.4.0",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.7.4"
},
"dependencies": {
"lockfile": "^1.0.4",
"ms": "^3.0.0-canary.1",
"node-fetch": "2.6.7"
},
"engines": {
"node": "^16.15.0",
"npm": "^8.5.5"
},
"versionist": {
"publishedAt": "2022-11-16T15:20:12.092Z"
}
}