-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "composr-cli",
"version": "1.1.0",
"description": "CompoSR | Command Line Interface",
"main": "bin/cli.js",
"bin": {
"composr": "bin/composr"
},
"preferGlobal": "true",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist .tmp",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src/*.js",
"watch": "watch 'npm run build' src test",
"test": "babel-node node_modules/tape/bin/tape test/**/*.spec.js | tspec",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/**/*.spec.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"toc": "doctoc --github --title \"# Changelog\" CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corbel-platform/composr-cli.git"
},
"keywords": [
"node",
"composr",
"corbel"
],
"authors": [
"jscmr",
"rafinskipg"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/corbel-platform/composr-cli/issues"
},
"homepage": "https://github.com/corbel-platform/composr-cli#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.10.4",
"babel-eslint": "*",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "*",
"dependency-check": "*",
"doctoc": "*",
"eslint": "*",
"isparta": "*",
"rimraf": "*",
"tap-spec": "*",
"tape": "*",
"watch": "*"
},
"dependencies": {
"ascii-art": "0.0.2-alpha",
"async": "^2.0.0-rc.3",
"async2": "^0.1.9",
"babel-runtime": "^6.9.2",
"chalk": "^1.1.1",
"cli-progress": "^1.1.2",
"cli-table": "^0.3.1",
"co": "^4.6.0",
"colors": "^1.1.2",
"command-line-args": "^2.1.6",
"composr-core": "^2.1.0",
"corbel-js": "^0.3.4",
"exists-file": "^1.0.0",
"gauge": "^2.6.0",
"glob": "^7.0.3",
"highland": "^2.7.4",
"inquirer": "^0.12.0",
"json-schema-generator": "^2.0.3",
"jsonfile": "^2.2.3",
"lodash": "^4.5.1",
"mkdirp": "^0.5.1",
"node-dir": "^0.1.11",
"progress": "^1.1.8",
"prompt": "^1.0.0",
"recursive-readdir": "^1.3.0",
"request": "^2.69.0",
"request-promise": "^4.0.2",
"rimraf": "^2.5.2",
"simple-spinner": "0.0.5",
"v8-profiler": "^5.6.5",
"yamljs": "^0.2.4"
}
}