-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "open-ioctl",
"version": "1.0.8",
"description": "Opens device file in non-blocking ioctl mode only",
"typings": "index.d.ts",
"main": "index.js",
"scripts": {
"test": "tsc && jest --verbose",
"jest-cov": "tsc --sourceMap -p . && jest --verbose --coverage --testPathPattern __tests__/.+\\.spec\\.js",
"map-cov": "remap-istanbul -i ./coverage/coverage-final.json -t lcovonly -o ./lcov.info",
"report-cov": "codeclimate-test-reporter < ./lcov.info",
"coverage": "npm run jest-cov && npm run map-cov && npm run report-cov",
"npm": "tsc -d -p .",
"clean": "rm -f -R coverage ./*.map ./*.d.ts ./__tests__/*.d.ts ./__tests__/*.js ./lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoHomey/open-ioctl.git"
},
"keywords": [
"ioctl",
"open",
"mode"
],
"author": "Ivo Stratev",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoHomey/open-ioctl/issues"
},
"homepage": "https://github.com/NoHomey/open-ioctl#readme",
"devDependencies": {
"@types/node": "^6.0.45",
"@types/jest": "^15.1.32",
"typescript": "^2.0.3",
"jest": "^16.0.0",
"remap-istanbul": "^0.7.0",
"codeclimate-test-reporter": "^0.4.0"
}
}