forked from bem-contrib/bem-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "bem-forms",
"keywords": [
"bem",
"forms"
],
"author": "Vyacheslav Aristov",
"repository": {
"type": "git",
"url": "https://github.com/bem/bem-forms"
},
"bugs": {
"url": "http://github.com/bem/bem-forms/issues"
},
"dependencies": {
"bem-environ": "1.4.0"
},
"devDependencies": {
"bem": "~0.9.0",
"bem-naming": "0.5.1",
"bem-tools-autoprefixer": "~0.0.3",
"bh": "3.3.0",
"borschik-tech-cleancss": "2.0.1",
"bower": "1.3.12",
"bower-npm-install": "~0.5.9",
"csscomb": "~3.0.4",
"enb": "0.15.0",
"enb-autoprefixer": "0.2.3",
"enb-bem-examples": "0.5.9",
"enb-bem-specs": "0.5.5",
"enb-bem-techs": "~1.0.4",
"enb-bem-tmpl-specs": "^0.11.0",
"enb-bemxjst": "1.3.4",
"enb-bh": "0.4.1",
"enb-borschik": "1.5.0",
"enb-diverse-js": "0.1.0",
"enb-magic-platform": "0.4.5",
"enb-modules": "0.2.0",
"enb-stylus": "1.2.3",
"git-hooks": "0.0.10",
"http-server": "^0.8.0",
"istanbul": "0.3.8",
"jscs": "^1.12.0",
"jscs-bem": "^0.2.0",
"jshint": "2.6.3",
"jshint-groups": "^0.7.0",
"stylus": "0.50.0",
"svgo": "0.5.0"
},
"private": true,
"scripts": {
"start": "magic server",
"make": "BEM_TEMPLATE_ENGINE=BEMHTML magic make --no-cache",
"deps": "bower i",
"compiled": "find . -iname '*.styl' | xargs stylus",
"build": "npm run build-${TEST_SCOPE:-all}",
"build-all": "npm run deps && magic make desktop.examples desktop.tests desktop.docs touch.examples touch.tests touch.docs *.bundles/*",
"build-specs": "npm run deps",
"build-tmpls": "npm run deps",
"test": "npm run build && npm run ${TEST_SCOPE:-test-all}",
"test-all": "npm run lint && npm run unit && npm run test-tmpls",
"test-specs": "magic run specs",
"test-tmpls": "magic run tmpl-specs",
"lint": "jshint-groups && jscs .",
"specs": "npm run test-specs",
"tmpls": "npm run test-tmpls",
"unit": "npm run test-specs",
"coverage": "ISTANBUL_COVERAGE=yes npm run specs"
}
}