-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"private": true,
"dependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"git-pre-commit": "^2.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.5.2",
"mocha-lcov-reporter": "^1.3.0",
"xo": "^0.18.2"
},
"name": "readability",
"version": "1.0.0",
"description": "Readability scores",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha ./lib/**/*.spec.js && yarn run cover",
"preinstall": "rm -rf node_modules/app || true",
"postinstall": "ln -s ../ node_modules/app",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha ./lib/*.js ./lib/**/*.js && echo \"View report: coverage/lcov-report/index.html\"",
"coveralls": "yarn run cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
"precommit": "yarn test"
},
"repository": {
"type": "git",
"url": "git@github.com/f1lt3r/readability.git"
},
"keywords": [
"readability"
],
"author": "f1lt3r",
"license": "MIT",
"xo": {
"esnext": true,
"semicolon": false,
"globals": [
"it",
"describe",
"beforeEach",
"before",
"after",
"afterEach",
"__dirname"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"space-before-function-paren": 0
}
}
}