-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"name": "user-startup",
"version": "0.3.0",
"description": "Automatically run commands when the user logs in (cross-platform)",
"main": "lib/index.js",
"scripts": {
"test": "babel-node test && standard --fix",
"build": "babel src --out-dir lib",
"prepublish": "npm test && npm run build && pkg-ok",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/typicode/user-startup.git"
},
"keywords": [
"startup",
"autostart",
"launchctl",
"plist",
"daemon",
"osx",
"linux",
"windows"
],
"author": "Typicode <typicode@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/user-startup/issues"
},
"homepage": "https://github.com/typicode/user-startup",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"husky": "^0.11.6",
"pkg-ok": "^1.0.1",
"standard": "^8.0.0"
},
"dependencies": {
"mkdirp": "^0.5.1",
"untildify": "^2.1.0"
}
}