-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@bem/sdk",
"version": "0.0.1",
"description": "BEM SDK",
"keywords": [
"bem",
"sdk"
],
"repository": "bem/bem-sdk",
"author": "Alexey Yaroshevich <[email protected]> (github.com/zxqfox)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/bem/bem-sdk/issues"
},
"homepage": "https://github.com/bem/bem-sdk#readme",
"engines": {
"node": ">= 4.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/proxyquire": "^1.3.27",
"@types/sinon": "^2.1.2",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-pedant": "^0.10.0",
"mocha": "^3.4.2",
"mock-fs": "^4.4.1",
"nyc": "^11.0.3",
"proxyquire": "^1.8.0",
"sinon": "^2.3.6",
"tslint": "^5.0.0",
"tslint-config-typings": "^0.3.1",
"typescript": "^2.4.1"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:dts",
"lint:js": "eslint .",
"lint:dts": "tslint packages/*/types/*.d.ts",
"pretest": "npm run lint",
"test": "nyc mocha 'packages/*/{test,spec}/**/*.{test,spec}.js'",
"test:specs": "mocha tests",
"test:cover": "nyc mocha tests"
},
"nyc": {
"exclude": [
"**/*.test.js",
"**/*.spec.js"
]
}
}