-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
80 lines (80 loc) · 2.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "holmes.js",
"version": "1.17.3",
"description": "Fast and easy searching inside a page.",
"main": "js/holmes.js",
"jsnext:main": "js/holmes.es.js",
"module": "js/holmes.es.js",
"files": [
"js/holmes.js",
"js/holmes.es.js",
"js/main.js"
],
"scripts": {
"build": "rollup -c && npm run build:min",
"build:min": "babili js/holmes.js -o js/holmes.js && babili js/holmes.es.js -o js/holmes.es.js",
"test": "npm run lint && npm run flow && npm run jest",
"lint": "eslint .",
"flow": "flow",
"jest": "jest --coverage",
"doc": "jsdoc -t node_modules/hopsdoc -c jsdoc.json -R README.md -d doc js/main.js",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"search",
"dom",
"filter"
],
"author": "Haroen Viaene <hello@haroen.me>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Haroenv/holmes.git"
},
"eslintConfig": {
"env": {
"es6": true
},
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
},
"extends": [
"plugin:flowtype/recommended",
"xo-space/browser",
"prettier"
]
},
"bugs": {
"url": "https://github.com/Haroenv/holmes/issues"
},
"homepage": "https://haroen.me/holmes/",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babili": "^0.1.4",
"coveralls": "^2.13.1",
"eslint": "^4.6.1",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo-space": "^0.16.0",
"eslint-plugin-flowtype": "^2.35.1",
"flow-bin": "^0.54.1",
"hopsdoc": "^0.1.7",
"jest": "^21.0.1",
"jsdoc": "^3.5.4",
"jsdoc-babel": "^0.3.0",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2"
}
}