-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "mantra-cli",
"version": "0.6.0",
"description": "Command line interface for building Meteor apps with Mantra",
"bin": {
"mantra": "./bin/mantra"
},
"scripts": {
"test":
"npm run-script compile && NODE_ENV=test ./node_modules/.bin/_mocha test/**/**/*_test.js --compilers js:babel-core/register",
"compile": "./node_modules/.bin/babel lib/ -d dist/",
"prepublish": "npm run-script compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sungwoncho/mantra-cli.git"
},
"keywords": ["meteor", "mantra", "cli"],
"author": "Sung Won Cho <mikeswcho@gmail.com> (https://sungwoncho.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sungwoncho/mantra-cli/issues"
},
"homepage": "https://github.com/sungwoncho/mantra-cli#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"editer": "^0.4.0",
"fs-extra": "^0.26.5",
"i": "^0.3.5",
"js-yaml": "^3.6.1",
"locater": "^1.3.0",
"lodash": "^4.5.0",
"match-bracket": "^1.0.0",
"shelljs": "^0.6.0",
"update-notifier": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}