forked from bem/bem-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"author": "",
"license": "MPL-2.0",
"name": "bem-components",
"version": "6.0.1",
"description": "BEM Components Library",
"homepage": "https://bem.info/libs/bem-components/",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-components.git"
},
"bugs": "https://github.com/bem/bem-components/issues",
"keywords": [
"bem",
"components",
"controls",
"ui"
],
"engines": {
"node": ">=4"
},
"files": [
"common.blocks",
"desktop.blocks",
"touch.blocks",
"design",
"README.ru.md"
],
"dependencies": {},
"peerDependency": {
"bem-core": "^4.2.1"
},
"devDependencies": {
"autoprefixer": "^6.4.0",
"bem-naming": "^1.0.1",
"bem-walk": "^1.0.0-1",
"borschik": "^1.6.0",
"bower": "^1.7.9",
"custom-server": "file:hermione/plugins/custom-server",
"enb": "^1.3.0",
"enb-bem-docs": "^0.11.0",
"enb-bem-examples": "^1.0.2",
"enb-bem-specs": "^0.11.0",
"enb-bem-techs": "^2.2.1",
"enb-bem-tmpl-specs": "^1.3.0",
"enb-bemxjst": "^8.5.2",
"enb-bh": "^1.2.0",
"enb-borschik": "^2.4.0",
"enb-magic-factory": "^0.5.0",
"enb-magic-platform": "^0.7.0",
"enb-modules": "^0.4.0",
"enb-postcss": "^1.1.0",
"git-hooks": "^1.0.2",
"glob": "^7.1.0",
"hermione": "^1.0.0",
"html-reporter": "^3.0.2",
"http-server": "^0.9.0",
"istanbul": "^0.4.4",
"jscs": "^2.11.0",
"jscs-bem": "^0.2.0",
"jshint": "^2.9.2",
"jshint-groups": "^0.8.0",
"postcss-calc": "^5.3.1",
"postcss-each": "^0.9.3",
"postcss-for": "^2.1.1",
"postcss-import": "^9.0.0",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^3.0.0",
"postcss-simple-vars": "^3.0.0",
"postcss-url": "^5.1.2",
"rebem-css": "^0.2.0"
},
"scripts": {
"start": "magic server",
"deps": "bower i && npm run drop-cache",
"drop-cache": "rm -rf .enb/tmp",
"postinstall": "npm run drop-cache",
"dist": "npm run deps && magic make dist/desktop dist/touch-pad dist/touch-phone",
"dist-hermione-test": "hermione --config .hermione-dist.conf.js",
"dist-hermione-update": "hermione gui --config .hermione-dist.conf.js",
"compiled": "node compile-postcss.js",
"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 *.pages/*",
"build-specs": "npm run deps",
"build-tmpls": "npm run deps",
"build-hermione": "npm run deps && magic make desktop.tests",
"build-dists": "npm run dist && node test/dist/build-fixtures.js && magic make desktop.pages/browser-tmpl-dist-hermione",
"test": "npm run build && npm run ${TEST_SCOPE:-test-all}",
"test-all": "npm run lint && npm run unit && npm run test-tmpls && npm run hermione && npm run test-dists",
"test-specs": "magic run specs",
"test-tmpls": "magic run tmpl-specs",
"test-dists": "node_modules/.bin/mocha-phantomjs test/dist/fixtures/*.html && npm run dist-hermione-test",
"lint": "jshint-groups && jscs .",
"hermione": "hermione",
"specs": "npm run lint && npm run test-specs",
"tmpls": "npm run test-tmpls",
"dists": "npm run test-dists",
"unit": "npm run test-specs",
"coverage": "ISTANBUL_COVERAGE=yes npm run specs"
}
}