forked from steelbrain/package-deps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 992 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
33
34
35
36
37
{
"name": "atom-package-deps",
"version": "4.2.0",
"description": "Automatically install package dependencies",
"main": "lib/index.js",
"scripts": {
"test": "apm test",
"lint": "eslint .",
"clean": "rm -rf lib",
"compile": "npm run clean && babel src --out-dir lib",
"watch": "npm run clean && babel src --out-dir lib --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steelbrain/package-deps.git"
},
"keywords": [
"atom"
],
"author": "steelbrain",
"license": "MIT",
"bugs": {
"url": "https://github.com/AtomLinter/package-deps/issues"
},
"homepage": "https://github.com/AtomLinter/package-deps#readme",
"dependencies": {
"atom-package-path": "^1.1.0",
"sb-exec": "^2.0.5"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-for-of-efficient": "^1.0.0",
"babel-preset-steelbrain": "^4.0.1",
"eslint-config-steelbrain": "^1.0.4",
"jasmine-fix": "^1.0.1"
}
}