-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "@veams/query",
"version": "3.0.5",
"description": "Represents a very simple DOM API for Veams-JS (incl. ajax support)",
"author": "Andy Gutsche",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json --outDir lib --declarationDir lib --declaration --module commonjs",
"start": "tsc --project tsconfig.json --watch --outDir lib --declarationDir lib --declaration --module commonjs",
"prepare": "npm run build",
"test": "jest",
"upgrade-interactive": "npm-check --update"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"devDependencies": {
"@shopify/jest-dom-mocks": "^2.11.7",
"@testing-library/jest-dom": "^5.12.0",
"fetch-mock": "^9.11.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"node-fetch": "^2.6.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"authors": [
"Andy Gutsche"
],
"repository": {
"type": "git",
"url": "https://github.com/veams/query.git"
},
"keywords": [
"veams-generator",
"veams-components",
"veams-sass",
"veams-js",
"veams",
"mangony"
],
"homepage": "https://github.com/Veams/query",
"license": "MIT",
"bugs": {
"url": "https://github.com/veams/veams-query/issues"
},
"dependencies": {
"ts-jest": "^26.5.6"
}
}