-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.52 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "dynamicdatajs",
"version": "0.1.0",
"description": "",
"author": "David Driscoll",
"module": "esm/index.js",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"esm",
"binding",
"cache",
"diagnostics",
"notify",
"util",
"src",
"*.js*",
"*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"test": "jest",
"lint": "eslint --fix src/**/*.ts test/**/*.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/david-driscoll/DynamicDataJs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/david-driscoll/DynamicDataJs/issues"
},
"homepage": "https://github.com/david-driscoll/DynamicDataJs#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-for-of": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/faker": "^5.1.0",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@vue/reactivity": "^3.0.0-rc.10",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^21.0.0",
"faker": "^5.1.0",
"husky": "^4.3.0",
"ix": "^4.0.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"rxjs": "^6.6.3",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tsdx": "^0.13.3",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
},
"dependencies": {
"binary-search": "^1.3.6",
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"ix": "^4.0.0",
"rxjs": "^6.0.0"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}