-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "indeksd",
"version": "0.0.17",
"description": "A DSL for defining IndexedDB schemas that compile into a type safe database client.",
"main": "./dist/main/index.js",
"types": "./dist/main/index.d.ts",
"bin": {
"indeksd": "./dist/main/bin/index.js"
},
"files": [
"dist/main"
],
"keywords": [
"TypeScript",
"IndexedDB",
"database",
"schema",
"DSL"
],
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"clean": "rimraf dist",
"clean:all": "npm run clean -- node_modules",
"prebuild": "npm run clean && npm run format",
"build": "tsc",
"move:fixtures": "rimraf dist/tests/fixtures && cp -r src/tests/fixtures dist/tests/fixtures",
"pretest": "npm run build && npm run move:fixtures",
"test": "node ./dist/tests/index.test.js"
},
"author": "Kevin Greene",
"license": "ISC",
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"@types/prettier": "^2.6.0",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"prettier": "^2.6.2",
"typescript": "^4.7.3"
}
}