forked from mantrajs/mantra-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "openki-cli",
"version": "0.5.0beta.4",
"description": "Command line interface for building views in Openki",
"bin": {
"mantra": "./bin/openki"
},
"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/Openki/openki-cli.git"
},
"keywords": [
"meteor",
"openki",
"cli"
],
"author": "Kaspar Vollenweider (@casaper)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Openki/openki-cli/issues"
},
"homepage": "https://github.com/Openki/openki-cli#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.11.0",
"editer": "^0.4.0",
"fs-extra": "^4.0.0",
"i": "^0.3.5",
"js-yaml": "^3.9.0",
"locater": "^1.3.0",
"lodash": "^4.17.4",
"match-bracket": "^1.0.0",
"shelljs": "^0.7.8",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"mocha": "^3.4.2"
}
}