-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "bem-tools-cp",
"version": "1.0.0",
"description": "BEM Tools plugin for copy BEM entities",
"bin": {
"cp": "bin/cp"
},
"main": "index.js",
"license": "ISC",
"bugs": {
"url": "https://github.com/bem-tools/bem-tools-cp/issues"
},
"keywords": [
"BEM",
"tools",
"copy",
"plugin",
"entity"
],
"author": "[email protected]",
"dependencies": {
"bem-config": "bem-sdk/bem-config",
"bem-fs-scheme": "bem-sdk/bem-fs-scheme",
"bem-naming": "^1.0.1",
"bem-walk": "bem-sdk/bem-walk",
"coa": "^1.0.1",
"fs-extra": "^0.30.0",
"lodash": "^4.13.1",
"micromatch": "^2.3.10"
},
"devDependencies": {
"JSONStream": "^1.1.3",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.0.1",
"jscs": "^3.0.6",
"mocha": "^2.5.3",
"proxyquire": "^1.7.10",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"scripts": {
"eslint": "eslint .",
"jscs": "jscs -c .jscs.js .",
"lint": "npm run eslint && npm run jscs",
"test": "mocha"
}
}