forked from wulkano/Aperture
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 779 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 779 Bytes
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
{
"name": "aperture",
"version": "2.0.0",
"description": "Record the screen on macOS",
"license": "MIT",
"repository": "wulkano/aperture",
"author": "Matheus Fernandes <npm@matheus.top> (https://matheus.top)",
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
}
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo",
"build": "cd swift && xcodebuild -derivedDataPath $(mktemp -d) -scheme aperture",
"prepublish": "npm run build"
},
"files": [
"index.js",
"swift/main"
],
"dependencies": {
"execa": "^0.6.0",
"tmp": "0.0.31"
},
"devDependencies": {
"xo": "^0.17.0"
},
"xo": {
"space": true,
"esnext": true
}
}