forked from tsedio/ts-gphoto2-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@typedproject/gphoto2-driver",
"version": "2.3.0",
"description": "Node.js wrapper of C library libgphoto2 written in TypeScript",
"main": "lib/index.js",
"typings": "lib/index.d.js",
"author": "Romain Lenzotti",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TypedProject/ts-gphoto2-driver.git"
},
"bugs": {
"url": "https://github.com/TypedProject/ts-gphoto2-driver/issues"
},
"homepage": "https://github.com/TypedProject/ts-gphoto2-driver",
"scripts": {
"postinstall": "npm run build && cd examples && npm i",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"prepublishOnly": "gflow release post",
"gflow-release-pre": "",
"semantic-release": "gflow release pre && semantic-release",
"travis-deploy-once": "travis-deploy-once",
"travis-coveralls": "nyc report --reporter=text-lcov | coveralls",
"tslint": "tslint --project tsconfig.json",
"test": "npm run tsc && npm run tslint && cross-env NODE_ENV=test nyc --reporter=html --reporter=text _mocha --recursive",
"tsc": "tsc --project tsconfig.json",
"develop": "npm run bootstrap && tsc --project tsconfig.json -w",
"build": "tsc --project tsconfig.compile.json",
"prettier": "prettier '{src,test}/**/*.ts' --write",
"bootstrap": "cd examples && npm run bootstrap"
},
"dependencies": {
"ffi-napi": "2.4.5",
"ref": "1.3.5",
"ref-array": "1.2.0",
"ref-struct": "1.1.0",
"source-map-support": "0.5.13",
"tslib": "1.10.0"
},
"devDependencies": {
"@types/chai": "4.2.2",
"@types/chai-as-promised": "7.1.2",
"@types/mocha": "5.2.7",
"@types/node": "12.7.5",
"@types/ref": "0.0.28",
"@types/ref-array": "0.0.28",
"@types/ref-struct": "0.0.29",
"@types/sinon": "7.0.13",
"@types/sinon-chai": "3.2.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.6",
"cross-env": "5.2.1",
"gflow": "^2.1.5",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"husky": "3.0.5",
"lint-staged": "9.2.5",
"mocha": "6.2.0",
"nyc": "14.1.1",
"prettier": "1.18.2",
"require-dir": "1.2.0",
"segfault-handler": "1.0.1",
"semantic-release": "15.6.0",
"sinon": "7.4.2",
"sinon-chai": "3.3.0",
"travis-deploy-once": "5.0.11",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "3.6.3"
},
"directories": {
"lib": "lib",
"src": "src",
"test": "test"
},
"release": {
"branch": "production"
}
}