-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.42 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "transformer",
"main": "./lib/main",
"version": "0.6.4",
"description": "Transform something",
"activationCommands": {
"atom-text-editor": [
"transformer:run",
"transformer:compile"
]
},
"keywords": [],
"repository": "https://github.com/t9md/atom-transformer",
"license": "MIT",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"atom-outlet": "^0.13.1",
"fs-plus": "^2.8.1",
"less": "^2.5.1",
"temp": "^0.8.1",
"underscore-plus": "^1.6.6"
},
"devDependencies": {
"prettier": "^1.10.2",
"standard": "^10.0.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'",
"lint": "standard lib/*.js lib/**/*.js spec/*.js"
},
"configSchema": {
"openLocation": {
"order": 1,
"type": "string",
"default": "bottom",
"enum": [
"center",
"bottom"
]
},
"split": {
"order": 2,
"type": "string",
"default": "right",
"enum": [
"right",
"down"
]
}
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
],
"ignore": [
"spec/fixtures/*"
]
}
}