-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.9 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
{
"name": "@nowarp/souffle",
"version": "0.1.2",
"description": "Souffle bindings for JavaScript/TypeScript",
"author": "Georgiy Komarov <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nowarp/souffle.js.git"
},
"homepage": "https://github.com/nowarp/souffle/",
"keywords": [
"static analysis",
"souffle",
"library"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./*": "./dist/src/*"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"clean": "rm -fr dist docs/*",
"build": "tsc",
"test": "jest",
"lint": "eslint src test examples",
"fmt": "prettier --check src test examples",
"spell": "cspell \"**\" --no-progress --exclude \"dist/**\" --exclude \"node_modules/**\" --exclude \"tags/**\"",
"docs": "yarn typedoc --out docs/api --entryPointStrategy expand src",
"release": "yarn build && yarn release-it"
},
"dependencies": {},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.0.4",
"@typescript-eslint/parser": "^7.0.4",
"cspell": "^8.12.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"release-it": "^17.6.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.26.7",
"typescript": "^4.9.3"
},
"prettier": {
"semi": true,
"printWidth": 80
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
},
"packageManager": "[email protected]"
}