-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "soukai",
"version": "0.5.2",
"description": "A refreshing library to work with your non relational database",
"main": "dist/soukai.cjs.js",
"module": "dist/soukai.esm.js",
"browser": "dist/soukai.umd.js",
"types": "dist/soukai.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm dist -rf && npm run build:js && npm run build:types",
"build:js": "noeldemartin-build-javascript",
"build:types": "noeldemartin-build-types",
"docs:build-typedoc": "typedoc --options docs/.typedoc/config.js ./src/main.ts",
"docs:build-vuepress": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:publish": "scripts/publish-docs.sh",
"lint": "noeldemartin-lint src",
"publish-next": "noeldemartin-publish-next",
"test:summary": "jest --reporters jest-summary-reporter || exit 0",
"test:coverage": "jest --coverage",
"test": "jest --verbose"
},
"engines": {
"node": ">=14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/NoelDeMartin/soukai.git"
},
"keywords": [
"active-record"
],
"author": "Noel De Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoelDeMartin/soukai/issues"
},
"homepage": "https://soukai.js.org",
"dependencies": {
"@babel/runtime": "^7.12.18",
"@noeldemartin/utils": "0.5.1-next.82707467527729a9fe7c2155959beb4b5ea30b81",
"@types/webpack-env": "^1.13.6",
"core-js": "^3.9.0",
"idb": "^5.0.2"
},
"devDependencies": {
"@noeldemartin/eslint-config-typescript": "^0.1.1",
"@noeldemartin/faker": "^7.6.0",
"@noeldemartin/scripts": "^0.1.2",
"@types/jest": "^26.0.20",
"eslint": "^7.19.0",
"fake-indexeddb": "^3.0.0",
"jest": "^26.6.3",
"jest-summary-reporter": "^0.0.2",
"ts-jest": "^26.5.1",
"typedoc": "^0.22.18",
"typescript": "^4.1.5",
"vuepress": "^1.9.8"
}
}