-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "bem-core",
"version": "4.3.1",
"description": "bem-core Library",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-core.git"
},
"keywords": [
"bem",
"core"
],
"author": "",
"license": "MPL-2.0",
"dependencies": {
"ym": "^0.1.2"
},
"devDependencies": {
"bem-naming": "^1.0.1",
"bem-walk": "1.0.0-alpha1",
"borschik": "^1.5.3",
"bower": "^1.7.9",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"enb": "^1.2.0",
"enb-bem-docs": "0.14.1",
"enb-bem-examples": "^1.0.2",
"enb-bem-i18n": "^1.1.1",
"enb-bem-specs": "^0.11.0",
"enb-bem-techs": "^2.2.2",
"enb-bem-tmpl-specs": "^1.3.3",
"enb-bemxjst": "^8.10.2",
"enb-bemxjst-6x": "^6.5.3",
"enb-bemxjst-7x": "^7.3.1",
"enb-bemxjst-i18n": "1.0.0-beta3",
"enb-bh": "^1.2.1",
"enb-bh-i18n": "1.0.0-beta2",
"enb-borschik": "^2.8.0",
"enb-css": "^1.2.2",
"enb-js": "^1.1.1",
"enb-magic-factory": "^0.6.0",
"enb-magic-platform": "0.7.0",
"gitbook-api": "^3.0.2",
"git-hooks": "^1.0.2",
"istanbul": "^0.4.3",
"jscs": "^2.11.0",
"jscs-bem": "^0.2.0",
"jsdoc": "^3.5.5",
"jshint": "^2.9.1",
"jshint-groups": "^0.8.0",
"mocha": "^3.3.0",
"mocha-phantomjs": "^4.1.0",
"vow": "^0.4.17"
},
"scripts": {
"start": "magic server",
"lint": "jshint-groups && jscs .",
"test": "npm run lint && npm run test-all",
"test-all": "npm run test-i18n && npm run test-tmpl && npm run test-js && npm run test-dist",
"test-js": "bower i && magic run specs",
"test-dist": "npm run build-dist-fixtures && node_modules/enb-bem-specs/node_modules/.bin/mocha-phantomjs test/dist/fixtures/*.html",
"test-tmpl": "magic run tmpl-specs",
"test-i18n": "mocha -R spec common.blocks/i18n/*.test.js",
"bundles": "magic make *.bundles/*",
"fixtures": "magic run tests",
"examples": "magic run examples",
"docs": "magic run docs",
"dist": "magic make dist/desktop dist/touch",
"build-dist-fixtures": "npm run dist && node test/dist/build-fixtures.js"
}
}