-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
{
"name": "rship",
"version": "2.1.0",
"description": "Ecosystem for building isomorphic web applications",
"main": "./cli/index.js",
"bin": {
"rship": "./ship"
},
"scripts": {
"ci": "mocha ./cli/**/*.spec.js",
"tdd": "mocha ./cli/**/*.spec.js --watch --recursive",
"code:coverage": "istanbul cover ./node_modules/.bin/_mocha mocha ./cli/**/*.spec.js && npm run code:report",
"code:report": "CODECLIMATE_REPO_TOKEN=45f0fcd76c25048c825d4f45f4d17f141358e1519a9c8ba54f792885499477e7 ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info",
"docs:prepare": "gitbook install",
"docs:watch": "gitbook serve",
"docs:build": "rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push [email protected]:rambler-digital-solutions/rship.git gh-pages --force"
},
"author": "Michael Chernobrov <[email protected]> (http://mrsum.ru)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rambler-digital-solutions/rship"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"dependencies": {
"blessed": "0.1.81",
"colors": "1.1.2",
"commander": "2.9.0",
"deepmerge": "1.3.2",
"memory-fs": "0.4.1",
"webpack": "2.3.1",
"webpack-dev-server": "2.4.2",
"yarn": "0.21.3"
},
"devDependencies": {
"chai": "3.5.0",
"codeclimate-test-reporter": "0.4.1",
"eslint-config-rambler": "0.2.7",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"sinon": "2.1.0"
}
}