-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "flora-exception",
"version": "0.1.1",
"description": "An exception system for FQL.",
"repository": {
"type": "git",
"url": "https://github.com/cntric/flora-exception"
},
"keywords": [
"fauna",
"query",
"types",
"exception",
"fql"
],
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "jest --verbose --coverage --maxWorkers=50% ./src",
"perf": "jest --verbose --coverage --maxWorkers=50% --testRegex 'src/(?:.*)\\.perf\\.(tsx|ts)'",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./tsconfig-fixup",
"docs": "rm -fr docs/* && npx typedoc src --categorizeByGroup false && http-server ./docs"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@size-limit/preset-big-lib": "^7.0.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.1.1",
"determinismus": "^0.0.1",
"fauna-test-setup": "^0.0.4",
"jest": "^27.3.1",
"nodemon": "^2.0.12",
"tulleries": "^0.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"faunadb": "^4.4.1",
"node-machine-id": "^1.1.12",
"random-word-slugs": "^0.1.6"
}
}