-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.75 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
{
"name": "qilin-manager",
"main": "dist/index.js",
"version": "1.2.3",
"author": "Łaniewski Bartosz <[email protected]> (http://laniewski.me/)",
"license": "MIT",
"keywords": [
"package-manager",
"theme-manager",
"qilin"
],
"description": "Manager for themes and plugins - customizes Qilin with custom packages",
"repository": {
"type": "git",
"url": "https://github.com/qilin-editor/qilin-manager.git"
},
"bugs": {
"url": "https://github.com/qilin-editor/qilin-manager/issues"
},
"dependencies": {
"vm2": "^3.5.2",
"debug": "^4.1.0",
"download": "^7.1.0",
"request": "^2.82.0"
},
"devDependencies": {
"flow-bin": "^0.64.0",
"eslint": "^4.6.1",
"eslint-config-google": "^0.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-flowtype": "^2.39.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^10.0.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0"
},
"scripts": {
"flow": "flow",
"clean": "rm -rf dist",
"build": "babel src -d dist",
"watch": "babel src -d dist -w",
"eslint": "node_modules/.bin/eslint src --fix",
"prepare": "npm run clean && npm run eslint && npm run flow && npm run build"
},
"maintainers": [
{
"name": "Bartosz Łaniewski",
"email": "[email protected]",
"web": "http://www.laniewski.me"
}
]
}