-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 931 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 931 Bytes
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
{
"name": "@pictalk/eqm",
"version": "1.2.0",
"description": "Elasticsearch Query Mapper",
"main": "lib/eqm.js",
"scripts": {
"build": "rm -Rf lib && tsc",
"bench": "node bench/index.js",
"test:update": "jest --verbose -u",
"test": "jest --verbose",
"prepublishOnly": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish --access public"
},
"keywords": [],
"author": "",
"license": "MIT",
"files": [
"lib",
"src"
],
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$"
},
"devDependencies": {
"jest": "^23.5.0",
"prettier": "^1.14.2",
"standard-version": "^4.4.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
}
}