-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.23 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
{
"name": "package-switch",
"main": "lib/main.js",
"version": "0.10.4",
"author": "Amin Yahyaabadi, Fabian Stiewitz",
"description": "Easy and Fast package activation/deactivation",
"keywords": [
"package",
"activate",
"deactivate",
"activation",
"disable",
"enable",
"load",
"bundle",
"switch",
"shutdown"
],
"repository": "https://github.com/aminya/package-switch",
"license": "MIT",
"scripts": {
"typescript": "tsc -p ./src/tsconfig.json || echo done",
"prettier_src": "prettier --write ./src/**/*.ts",
"prettier_out": "prettier --write ./lib/**/*.js",
"buildlocal": "npm run clean && npm run typescript -s",
"lint": "eslint . --fix --ext js,ts,coffee,json",
"test": "npm run buildlocal && atom --test spec",
"clean": "shx rm -rf lib spec/package-switch.bundles ./package-switch.bundles",
"dev": "npm run clean && env NODE_ENV=development env BABEL_ENV=production rollup -c -w",
"build": "npm run clean && env NODE_ENV=production env BABEL_ENV=production rollup -c",
"prepare": "npm run build && node ./node_modules/atom-space-pen-views-plus/scripts/postinstall.js",
"ppublish": "bash ./ppublish.sh"
},
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views-plus": "^3.0.4",
"season": "^6.0.2"
},
"devDependencies": {
"fs-plus": "latest",
"typescript": "^3.9.7",
"coffeescript": "^1.12.7",
"@types/atom": "^1.40.4",
"@types/season": "^6.0.0",
"eslint": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-eslint": "latest",
"eslint-plugin-coffee": "latest",
"eslint-plugin-json": "latest",
"eslint-plugin-only-warn": "latest",
"tslint": "latest",
"tslint-config-prettier": "latest",
"prettier": "latest",
"rollup": "^2.23.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"rollup-plugin-coffee-script": "^2.0.0",
"@rollup/plugin-json": "^4.1.0",
"rollup-plugin-terser": "^6.1.0",
"tslib": "^2.0.0",
"shx": "^0.3.2"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"printWidth": 120
}
}