-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.77 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
{
"name": "atomic-db-interface",
"version": "1.3.0",
"description": "A lightweight database wrapper with single-table design support and optimistic locking.",
"repository": {
"type": "git",
"url": "git://github.com/ai-1st/atomic-db.git"
},
"public": true,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"scripts": {
"compile:tests": "tsc --project tsconfig.test.json",
"compile:package": "tsc --project tsconfig.json",
"compile": "npm run compile:tests && npm run compile:package",
"build": "npm run compile",
"unit": "ava --verbose",
"unit:coverage": "nyc ava",
"test": "npm run compile && npm run unit",
"coverage": "npm run compile && npm run unit:coverage",
"watch:compile": "onchange ./src/**/*.ts -- npm run compile",
"watch:test": "onchange 'src/**/*.ts' -- npm run test",
"publish": "git push --follow-tags",
"prepare": "husky install",
"prettier": "prettier --write ."
},
"keywords": [
"typescript"
],
"author": "Dmitry Degtyarev",
"license": "MIT",
"ava": {
"files": [
"build/**/*.test.js"
]
},
"dependencies": {
"mnemonist": "^0.39.8",
"ulid": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"ava": "^5.1.1",
"concurrently": "^7.6.0",
"husky": "^8.0.3",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"tsconfigs": "^5.0.0",
"typescript": "^4.9.4",
"wait-on": "^7.2.0"
},
"publishConfig": {
"access": "public"
}
}