-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "atom-ide-code-format",
"displayName": "Code Formatting for Atom IDE",
"repository": "https://github.com/atom-community/atom-ide-code-format",
"main": "./dist/main.js",
"version": "1.0.3",
"description": "Provides a code-formatting provider API",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "npm run build.unit && npm run test.only",
"test.only": "atom --test ./dist/spec",
"clean": "shx rm -rf dist",
"build.unit": "tsc -p ./tsconfig.json",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ",
"build-commit": "build-commit -o dist",
"bump": "ncu -u -x coffeescript",
"prepare": "npm run build"
},
"atomTestRunner": "./dist/spec/runner",
"activationHooks": [
"core:loaded-shell-environment"
],
"engines": {
"atom": ">=1.52.0 <2.0.0"
},
"consumedServices": {
"atom-ide-busy-signal": {
"versions": {
"0.1.0": "consumeBusySignal"
}
},
"nuclide-code-format.provider": {
"versions": {
"0.0.0": "consumeLegacyProvider"
}
},
"code-format.range": {
"versions": {
"0.1.0": "consumeRangeProvider"
}
},
"code-format.file": {
"versions": {
"0.1.0": "consumeFileProvider"
}
},
"code-format.onType": {
"versions": {
"0.1.0": "consumeOnTypeProvider"
}
},
"code-format.onSave": {
"versions": {
"0.1.0": "consumeOnSaveProvider"
}
}
},
"dependencies": {
"@atom-ide-community/nuclide-commons": "^0.8.3",
"@atom-ide-community/nuclide-commons-atom": "^0.8.3",
"log4js": "6.4.4"
},
"devDependencies": {
"@artemv/wait-until-promise": "^1.1.2",
"@types/atom": "1.40.11",
"@types/jasmine": "^3.8.1",
"@types/node": "^16.3.2",
"atom-ide-base": "^3.3.0",
"atom-jasmine3-test-runner": "^5.2.7",
"babel-preset-atomic": "^4.1.0",
"build-commit": "0.1.4",
"cross-env": "^7.0.3",
"eslint-config-atomic": "^1.16.1",
"prettier-config-atomic": "^2.0.5",
"rollup-plugin-atomic": "^3.0.0",
"shx": "^0.3.3",
"temp": "^0.9.4",
"typescript": "^4.3.5",
"waitit": "^1.0.3"
},
"prettier": "prettier-config-atomic"
}