-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "atom-linter",
"version": "10.0.0",
"description": "Helper module for atom linter providers",
"main": "lib/index.js",
"scripts": {
"lint": "(flow check) && (eslint .)",
"test": "atom --test spec",
"clean": "rimraf 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+ssh://git@github.com/steelbrain/atom-linter.git"
},
"keywords": [
"atom",
"linter"
],
"author": "steelbrain",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/atom-linter/issues"
},
"homepage": "https://github.com/steelbrain/atom-linter#readme",
"dependencies": {
"grim": "^2.0.2",
"named-js-regexp": "^1.3.1",
"sb-exec": "^4.0.0",
"sb-promisify": "^2.0.1",
"tmp": "~0.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-steelbrain": "^5.0.2",
"eslint-config-steelbrain": "^7.0.0",
"flow-bin": "^0.123.0",
"jasmine-fix": "^1.0.1",
"rimraf": "^3.0.0"
}
}