-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 944 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
{
"name": "project-folder",
"main": "./lib/main",
"version": "1.5.0",
"description": "Quickly add/remove project folder",
"keywords": [],
"activationCommands": {
"atom-workspace": [
"project-folder:add",
"project-folder:remove",
"project-folder:open-config"
]
},
"repository": "https://github.com/t9md/atom-project-folder",
"license": "MIT",
"engines": {
"atom": "^1.18.0"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"fs-plus": "^2.10.1",
"fuzzaldrin": "^2.1.0",
"season": "^5.4.1",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"fs-extra": "^2.0.0",
"prettier": "^1.10.2",
"temp": "^0.8.3"
},
"scripts": {
"test": "apm test",
"watch": "fswatch -0 spec lib | xargs -0 -n1 -I{} apm test",
"prettier": "prettier --write --no-semi --print-width=120 --no-bracket-spacing --trailing-comma=es5 'lib/**/*.js' 'spec/*.js'"
}
}