This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 203
/
package.json
52 lines (52 loc) · 1.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
{
"name": "simple-jekyll-search",
"version": "1.9.1",
"description": "Simple Jekyll site search using javascript and json",
"main": "dest/simple-jekyll-search.js",
"scripts": {
"cypress": "cypress",
"lint": "standard",
"pretest": "npm run lint",
"prebuild": "npm run test",
"postbuild": "npm run copy-example-code",
"browserify": "browserify -p browser-pack-flat/plugin src/index.js | node scripts/stamp.js > dest/simple-jekyll-search.js",
"build": "npm run browserify && npm run uglify",
"dist": "npm run build && npm run copy-example-code",
"test": "ava",
"start": "cd example; jekyll serve",
"copy-example-code": "cp dest/* example/js/",
"uglify": "uglifyjs --compress --mangle --ie8 --comments \"/^/*!/\" --output dest/simple-jekyll-search.min.js dest/simple-jekyll-search.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christian-fei/Simple-Jekyll-Search.git"
},
"author": "Christian Fei",
"license": "MIT",
"files": [
"dest",
"src"
],
"bugs": {
"url": "https://github.com/christian-fei/Simple-Jekyll-Search/issues"
},
"homepage": "https://github.com/christian-fei/Simple-Jekyll-Search",
"dependencies": {
"fuzzysearch": "^1.0.3"
},
"devDependencies": {
"ava": "^3.14.0",
"browser-pack-flat": "^3.4.2",
"browserify": "^17.0.0",
"cypress": "^6.2.0",
"standard": "^16.0.3",
"uglify-js": "^3.12.3"
},
"standard": {
"ignore": [
"cypress/**",
"example/**",
"dest/**"
]
}
}