-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "babel-plugin-bem-import",
"version": "2.0.0",
"description": "BEM imports resolver",
"main": "src/index.js",
"scripts": {
"specs": "mocha --recursive",
"test": "npm run specs",
"cover": "nyc npm test",
"report:html": "nyc report --reporter=html && open coverage/index.html",
"report:lcov": "nyc report --reporter=text-lcov"
},
"engines": {
"node": ">=8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bem/babel-plugin-bem-import.git"
},
"keywords": [
"babel",
"bem",
"import",
"declaration",
"babylon"
],
"author": "Anton Winogradov <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/bem/babel-plugin-bem-import/issues"
},
"homepage": "https://github.com/bem/babel-plugin-bem-import#readme",
"files": [
"src/"
],
"dependencies": {
"@babel/core": "^7.1.0",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/template": "^7.1.0",
"@bem/cell": "0.2.6",
"@bem/entity-name": "1.5.0",
"@bem/fs-scheme": "2.2.0",
"@bem/import-notation": "1.1.3",
"@bem/naming": "2.0.0-6",
"bem-config": "3.2.3",
"debug": "3.1.0",
"log-symbols": "1.0.2",
"required-path": "1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"common-tags": "^1.8.0",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"nyc": "^12.0.2"
}
}