-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "funcitons",
"version": "0.0.1",
"description": "A funci package for writing funci tests. (Do-doo Do-doo-do)",
"keywords": [
"function",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/cntric/functions"
},
"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"
},
"author": "",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.1.1",
"determinismus": "^0.0.1",
"jest": "^27.1.1",
"nodemon": "^2.0.12",
"tulleries": "^0.0.5",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/node": "^16.9.1",
"@types/shortid": "^0.0.29",
"http-server": "^13.0.2",
"shortid": "^2.2.16",
"typedoc": "^0.22.4"
}
}