-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "atom-vscode",
"main": "dist/main.js",
"version": "0.1.0",
"author": "Amin Yahyaabadi",
"description": "Atom with VSCode API!",
"keywords": ["atom", "vscode", "atom-vscode"],
"repository": "https://github.com/atom-ide-community/atom-vscode",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"test": "atom --test spec",
"clean": "shx rm -rf dist",
"tsc": "tsc -p src/tsconfig.json || echo done",
"devtsc": "tsc -p src/tsconfig.json -w",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production cross-env rollup -c ",
"build-commit": "build-commit -o dist",
"bump": "ncu -u -x coffeescript",
"prepare": "npm run build"
},
"atomTestRunner": "./spec/runner",
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"@types/vscode": "^1.55.0",
"@types/atom": "1.40.10"
},
"devDependencies": {
"@types/node": "^16.0.0",
"typescript": "^4.2.3",
"tslib": "^2.1.0",
"jasmine": "^3.7.0",
"@types/jasmine": "^3.6.9",
"atom-jasmine3-test-runner": "^5.2.2",
"prettier": "^2.2.1",
"eslint": "7.32.0",
"eslint-config-atomic": "^1.12.5",
"rollup": "2.58.0",
"rollup-plugin-atomic": "^3.0.0",
"shx": "latest",
"cross-env": "7.0.3",
"npm-check-updates": "latest",
"build-commit": "latest"
},
"providedServices": {},
"consumedServices": {},
"package-deps": []
}