-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "robotizer",
"version": "0.0.0",
"description": "robotizer",
"license": "MIT",
"repository": "git+https://github.com/rimiti/robotizer.git",
"author": "Dimitri DO BAIRRO <dimitri.dobairro@dimsolution.com>",
"keywords": [
"robots.txt",
"parser",
"generator",
"manager"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output && rimraf lib_test",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty && tsc -p tsconfig.test.json --pretty",
"test": "tsc -p tsconfig.test.json --pretty && nyc --exclude \"**/*-spec.js\" ava \"**/*-spec.js\" --verbose",
"coverage": "nyc report --reporter=lcov --reporter=text --reporter=html",
"watch": "npm run build -- --watch",
"watch:test:ts": "tsc -p tsconfig.test.json --pretty --watch",
"watch:test:ava": "ava \"**/*-spec.js\" --verbose --watch",
"watch:test": "run-p watch:test:ts watch:test:ava"
},
"dependencies": {
"@types/lodash": "^4.14.109",
"axios": "^0.18.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/node": "~8.0.0",
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"npm-run-all": "^4.1.3",
"nyc": "^11.8.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "^2.3.0"
},
"engines": {
"node": ">=6.0.0"
},
"ava": {
"require": [
"babel-register"
]
}
}