-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.26 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
{
"name": "posthtml-css-modules",
"version": "0.1.3",
"description": "Use CSS modules in HTML",
"main": "index.js",
"author": "Kirill Maltsev <maltsevkirill@gmail.com>",
"license": "MIT",
"scripts": {
"compile": "rimraf lib/*.js && babel -d lib/ lib/",
"lint": "eslint *.js lib/*.es6 test/",
"pretest": "npm run lint && npm run compile",
"test": "mocha --compilers js:babel-core/register --recursive --check-leaks",
"prepublish": "npm run compile"
},
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"postproccessor",
"css",
"css-modules"
],
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"lodash.get": "^4.0.2",
"posthtml-attrs-parser": "^0.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^2.0.0",
"expect": "^1.14.0",
"mocha": "^3.2.0",
"posthtml": "^0.9.2",
"rimraf": "^2.6.1"
},
"repository": {
"type": "git",
"url": "git://github.com/posthtml/posthtml-css-modules.git"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-css-modules/issues"
},
"homepage": "https://github.com/posthtml/posthtml-css-modules"
}