-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"author": "Marat Dulin <mdevils@yandex.ru>",
"description": "Template engine. BEMJSON => HTML processor",
"name": "bh",
"version": "4.2.1",
"repository": "https://github.com/bem/bh",
"licence": "MIT",
"contributors": [
{
"name": "Marat Dulin",
"email": "mdevils@yandex.ru"
},
{
"name": "Dmitry Filatov",
"email": "dfilatov@yandex-team.ru"
},
{
"name": "Mikhail Troshev",
"email": "mishanga@yandex-team.ru"
}
],
"devDependencies": {
"mocha": "3.1.x",
"chai": "3.5.x",
"istanbul": "0.4.x",
"jshint": "2.x",
"jscs": "3.0.x"
},
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "npm run-script jshint && npm run-script check-style && npm run-script unit-test-coverage",
"jshint": "./node_modules/.bin/jshint .",
"unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test",
"unit-test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec --recursive test",
"check-style": "./node_modules/jscs/bin/jscs ."
}
}