-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"directories": {
"lib": "lib",
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "searchive-create-index",
"version": "0.1.0",
"description": "create search index",
"main": "lib/searchive-create-index.js",
"scripts": {
"test": "mocha 'test/**/*.ts'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,css}'",
"build": "cross-env NODE_ENV=production tsc -p .",
"watch": "tsc -p . --watch",
"prepublish": "npm run --if-present build"
},
"keywords": [
"searchive"
],
"repository": {
"type": "git",
"url": "https://github.com/azu/searchive.git"
},
"bugs": {
"url": "https://github.com/azu/searchive/issues"
},
"homepage": "https://github.com/azu/searchive/tree/master/pacakges/searchive-create-index/",
"dependencies": {
"@types/globby": "^6.1.0",
"@types/p-limit": "^1.0.0",
"@types/p-timeout": "^1.2.0",
"globby": "^6.1.0",
"p-limit": "^1.0.0",
"p-progress": "^0.1.1",
"p-timeout": "^1.2.0",
"pdf-to-json": "^0.1.0",
"searchive-client": "^0.1.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.50",
"cross-env": "^5.1.1",
"mocha": "^4.0.1",
"prettier": "^1.8.1",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"types": "lib/searchive-create-index.d.ts"
}