-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "model-editor",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/bem-site/model-editor.git"
},
"author": "Andrey Kuznetsov <[email protected]> (http://github.com/tormozz48)",
"maintainers": [
"Andrey Kuznetsov <[email protected]> (http://github.com/tormozz48)"
],
"contributors": [
"Andrey Kuznetsov <[email protected]> (http://github.com/tormozz48)",
"Nikolay Ilchenko <[email protected]> (http://github.com/tavriaforever)",
"Gela Konstantinova <[email protected]> (http://github.com/gela-d)"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"bem-site-logger": "0.0.x",
"body-parser": "1.12.x",
"cookie-parser": "1.3.x",
"express": "^4.12.x",
"forever": "^0.14.x",
"fs-extra": "^0.18.x",
"inherit": "^2.2.x",
"json-stringify-safe": "5.0.x",
"lodash": "^3.1.x",
"moment": "^2.9.0",
"serve-static": "^1.9.x",
"vow": "~0.4.x",
"vow-node": "^0.2.x"
},
"devDependencies": {
"bem": "^0.9.0",
"bower": "~1.4.x",
"borschik": "^1.3.2",
"borschik-tech-cleancss": "^1.0.3",
"enb": "^0.13.15",
"enb-autoprefixer": "^0.2.2",
"enb-bem-specs": "^0.5.6",
"enb-bem-techs": "^1.0.3",
"enb-bemxjst": "^1.3.4",
"enb-borschik": "^1.4.0",
"enb-diverse-js": "^0.1.0",
"enb-magic-factory": "^0.4.4",
"enb-modules": "^0.2.0",
"enb-stylus": "^1.2.0",
"stylus": "^0.47.3",
"ym": "^0.1.0",
"istanbul": "^0.3.x",
"jscs": "^1.11.x",
"jshint": "~2.6.x",
"mocha": "~2.2.x",
"mocha-lcov-reporter": "0.0.x",
"request": "^2.55.x",
"should": "~5.2.x",
"supertest": "^0.15.0"
},
"scripts": {
"deps": "bower i",
"enb": "enb make --no-cache",
"stub": "node bin/stub.js",
"config": "cp -i configs/config.json configs/_config.json",
"make": "npm run deps && npm run enb",
"start": "node bin/single.js",
"mocha": "NODE_ENV=testing node_modules/.bin/mocha",
"istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha",
"codestyle": "node_modules/.bin/jshint . && node_modules/.bin/jscs -c .jscs.js .",
"cover": "NODE_ENV=testing istanbul cover _mocha",
"coveralls": "npm install coveralls && npm run cover && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test": "npm run make && npm run coveralls"
},
"readmeFilename": "README.md",
"license": "MPL-2.0"
}