-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "bakeryjs",
"version": "0.1.2",
"description": "FBP-inspired library",
"main": "build/index",
"types": "build/index",
"author": "Socialbakers <[email protected]>",
"contributors": [
"Milan Lepík <[email protected]>",
"Jakub Slovan <[email protected]>",
"Martin Štekl <[email protected]>",
"Jan Vlnas <[email protected]>"
],
"license": "MIT",
"files": [
"build/"
],
"engines": {
"node": ">=8.11",
"npm": ">=5.6"
},
"repository": {
"type": "git",
"url": "https://github.com/Socialbakers/BakeryJS.git"
},
"dependencies": {
"ajv": "^6.10.2",
"async": "^2.6.2",
"better-queue": "^3.8.10",
"debug": "^4.1.1",
"sb-jsnetworkx": "^0.3.6",
"verror": "^1.10.0"
},
"devDependencies": {
"@types/async": "^2.4.1",
"@types/better-queue": "^3.8.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.5",
"@types/verror": "^1.10.3",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^25.1.0",
"json5": "^2.1.0",
"nodemon": "^2.0.1",
"prettier": "2.2.1",
"ts-jest": "^25.0.0",
"ts-node": "^8.3.0",
"typedoc": "^0.20.18",
"typescript": "^3.5.3",
"typescript-eslint-parser": "^22.0.0"
},
"scripts": {
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts all",
"build": "tsc -b tsconfig.build.json",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint --ext .ts,.js src/ tests/",
"doc": "typedoc --out ./docs/ --target ES6 src/"
}
}