-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.34 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
{
"name": "@bem/bemjson-node",
"version": "0.1.0",
"description": "BEM tree node representation",
"license": "MPL-2.0",
"repository": "bem-sdk/bemjson-node",
"author": "Alexey Yaroshevich <zxqfox@gmail.com> (github.com/zxqfox)",
"keywords": [
"bem",
"bemjson",
"node",
"tree"
],
"main": "index.js",
"typings": "index.d.ts",
"files": [
"lib/**",
"types/**",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">= 4.0"
},
"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"
]
},
"dependencies": {
"@bem/entity-name": "^1.5.0"
}
}