-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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": "swiftmon",
"version": "0.2.3",
"description": "swiftmon restarts your swift application in case of any file change",
"main": "index.js",
"bin": {
"swiftmon": "./bin/swiftmon"
},
"preferGlobal": "true",
"scripts": {
"start": "nodemon $npm_package_main --exec babel-node",
"clean": "rimraf lib",
"build": "NODE_ENV=production babel src -d lib",
"release": "npm run clean && npm run build -s && git commit -am $npm_package_version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dimpiax/swiftmon.git"
},
"keywords": [
"node",
"swift",
"swiftpm"
],
"author": "Dima Pilipenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimpiax/swiftmon/issues"
},
"homepage": "https://github.com/dimpiax/swiftmon#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-flow": "6.23.0",
"babili": "0.1.4",
"eslint": "4.2.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-security": "1.4.0",
"flow-bin": "0.49.1",
"flow-remove-types": "1.2.1",
"linter-flow": "0.1.4",
"nodemon": "1.11.0"
},
"dependencies": {
"babel-plugin-transform-runtime": "6.23.0",
"colors": "1.1.2"
}
}