-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1022 Bytes
/
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
{
"name": "antipathy",
"version": "2.0.0",
"description": "Sane Node.js filesystem operations for TypeScript 📁",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": ["dist/main.js", "dist/main.d.ts", "README.md", "LICENSE", "package.json"],
"repository": "https://github.com/jwinnie/antipathy",
"author": "Jeremy Potter",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-clean-code": "^0.2.9",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts' --project tsconfig.json",
"test": "jest",
"coverage": "jest --coverage",
"coverage:report": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"docs": "typedoc --out docs/ src/main.ts"
}
}