-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.51 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
{
"name": "webalize",
"version": "0.1.0",
"description": "Utilities for replacing diacritics and camelcase notations",
"main": "src/index.js",
"scripts": {
"doc": "node ./bin/makeApiDoc.js",
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --opts ./mocha.opts ./test",
"test:coverage:threshold": "node ./node_modules/.bin/istanbul check --branches 80 --functions 80 --statements 80 --lines 80 ./coverage/coverage.json",
"test:backend": "./node_modules/mocha/bin/mocha --opts ./mocha.opts ./test ./src",
"test:lint": "node ./node_modules/eslint/bin/eslint.js --ext .js src test *.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pragonauts/webalize.git"
},
"keywords": [
"webalize",
"url",
"nette",
"camelcase",
"diacritics"
],
"author": "Pragonauts",
"license": "MIT",
"bugs": {
"url": "https://github.com/pragonauts/webalize/issues"
},
"homepage": "https://github.com/pragonauts/webalize#readme",
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-mocha": "^0.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.7.1",
"jsdoc-to-markdown": "^2.0.1",
"mocha": "^3.1.2",
"mocha-istanbul": "^0.3.0",
"sinon": "^1.17.6"
},
"dependencies": {
}
}