-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.61 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
{
"name": "atom-ide-template",
"main": "dist/main.js",
"version": "0.1.0",
"author": "<Your Name>",
"description": " ",
"keywords": [],
"repository": "https://github.com/atom-ide-community/atom-ide-template",
"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",
"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"
},
"prettier": "prettier-config-atomic",
"atomTestRunner": "./spec/runner",
"activationHooks": [
"core:loaded-shell-environment"
],
"engines": {
"atom": ">=1.52.0 <2.0.0",
"electron": ">=6.x"
},
"dependencies": {
"atom-package-deps": "^8.0.0"
},
"devDependencies": {
"@types/atom": "1.40.11",
"@types/jasmine": "^3.8.2",
"@types/node": "^16.6.0",
"atom-jasmine3-test-runner": "^5.2.7",
"build-commit": "0.1.4",
"cross-env": "7.0.3",
"eslint-config-atomic": "^1.16.2",
"npm-check-updates": "11.8.3",
"prettier-config-atomic": "^2.0.5",
"rollup-plugin-atomic": "^3.0.1",
"shx": "0.3.3",
"terser-config-atomic": "^0.1.1",
"typescript": "^4.3.5"
},
"providedServices": {},
"consumedServices": {},
"package-deps": []
}