This repository has been archived by the owner on Feb 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.5 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
{
"name": "@bem/entity-name",
"version": "1.5.0",
"description": "BEM entity name representation",
"license": "MPL-2.0",
"repository": "bem-sdk/bem-entity-name",
"author": "Andrew Abramov <[email protected]> (github.com/blond)",
"keywords": [
"bem",
"entity",
"block",
"element",
"elem",
"modifier",
"mod",
"name",
"val",
"value",
"type",
"id",
"is",
"equal"
],
"main": "index.js",
"typings": "index.d.ts",
"files": [
"lib/**",
"types/**",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">= 4.0"
},
"dependencies": {
"@bem/naming": "2.0.0-5",
"depd": "1.1.0",
"es6-error": "4.0.2"
},
"devDependencies": {
"@types/node": "^4.2.5",
"@types/proxyquire": "^1.3.27",
"@types/sinon": "^2.1.2",
"ava": "^0.19.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-config-pedant": "^0.9.0",
"nyc": "^10.0.0",
"proxyquire": "^1.7.7",
"sinon": "^2.1.0",
"tslint": "^5.0.0",
"tslint-config-typings": "^0.3.1",
"typescript": "^2.2.2"
},
"scripts": {
"pretest": "npm run lint",
"test": "nyc ava",
"lint": "npm run lint:js && npm run lint:dts",
"lint:js": "eslint .",
"lint:dts": "tslint types/*.d.ts",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"./test/setup.js"
]
},
"greenkeeper": {
"ignore": [
"@types/node"
]
}
}