-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 893 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 893 Bytes
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
{
"name": "bemjson-loader",
"version": "0.1.0",
"description": "Extracts declarations from the bemjson file",
"main": "index.js",
"scripts": {
"lint": "eslint test/**/*.js test/*.js *.js",
"test": "mocha --ui tdd test/",
"test:debug": "DEBUG=loader npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sullenor/bemjson-loader.git"
},
"keywords": [
"bemjson",
"webpack",
"loader"
],
"author": "Alexey Litvinov",
"license": "MIT",
"bugs": {
"url": "https://github.com/sullenor/bemjson-loader/issues"
},
"homepage": "https://github.com/sullenor/bemjson-loader#readme",
"dependencies": {
"bemjson-to-decl": "^1.0.1",
"loader-utils": "^0.2.16"
},
"devDependencies": {
"debug": "^2.2.0",
"eslint": "^3.8.1",
"memory-fs": "^0.3.0",
"mocha": "^3.1.2",
"webpack": "^1.13.2"
}
}