-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "coveo-search-ui-tests",
"version": "0.0.7",
"description": "Testing framework for the Coveo JavaScript Search Framework",
"main": "./bin/js/CoveoJsSearchTests.js",
"peerDependencies": {
"coveo-search-ui": "^2.6459.9"
},
"scripts": {
"precommit": "lint-staged",
"build": "webpack",
"dts": "node declaration.js",
"prepublish": "npm run build && npm run dts",
"deployPatch": "npm version patch && npm run deploy",
"deploy": "npm publish"
},
"lint-staged": {
"*.{js,ts,json,.scss}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/coveo/search-ui-tests.git"
},
"keywords": [
"coveo-search",
"typescript",
"javascript",
"coveo",
"coveo-search-ui",
"jsui"
],
"author": "Coveo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coveo/search-ui-tests/issues"
},
"files": [
"bin",
"lib",
"src"
],
"homepage": "https://github.com/coveo/search-ui-tests#readme",
"devDependencies": {
"@types/jasmine": "^2.8.6",
"child-process-promise": "^2.2.1",
"colors": "^1.2.1",
"coveo-search-ui": "^2.6459.9",
"dts-webpack-plugin": "^0.0.9",
"exports-loader": "^0.7.0",
"lint-staged": "^7.0.0",
"jquery": "^3.2.1",
"npm-cli-login": "^0.0.10",
"ts-loader": "^4.0.1",
"typescript": "^3.5.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
},
"dependencies": {
"underscore": "^1.8.3"
},
"types": "./bin/ts/coveo-search-ui-tests.d.ts"
}