-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
74 lines (74 loc) · 1.93 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
65
66
67
68
69
70
71
72
73
74
{
"name": "css-modules-require-hook",
"version": "4.2.3",
"description": "A require hook to compile CSS Modules on the fly",
"main": "lib/index.js",
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "https://github.com/css-modules/css-modules-require-hook.git"
},
"keywords": [
"css-modules",
"require",
"hook"
],
"author": {
"name": "Alexey Litvinov",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/css-modules/css-modules-require-hook/issues"
},
"homepage": "https://github.com/css-modules/css-modules-require-hook",
"eslintConfig": {
"extends": "@sullenor/eslint-config/node",
"rules": {
"max-len": [
2,
120
]
}
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@sullenor/eslint-config": "next",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"eslint": "^4.6.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-debug": "^3.1.0",
"jest": "^21.0.2",
"mocha": "^3.5.1",
"postcss-less": "^1.1.0",
"pre-commit": "^1.2.2",
"sinon": "^3.2.1"
},
"dependencies": {
"debug": "^2.2.0",
"generic-names": "^1.0.1",
"glob-to-regexp": "^0.3.0",
"icss-replace-symbols": "^1.0.2",
"lodash": "^4.3.0",
"postcss": "^6.0.1",
"postcss-modules-extract-imports": "^1.0.0",
"postcss-modules-local-by-default": "^1.0.1",
"postcss-modules-resolve-imports": "^1.3.0",
"postcss-modules-scope": "^1.0.0",
"postcss-modules-values": "^1.1.1",
"seekout": "^1.0.1"
},
"scripts": {
"lint": "eslint src/**/*.js",
"prepublish": "npm run transpile",
"pretest": "npm run transpile",
"test": "NODE_PATH=$(pwd)/test/tokens/node_modules mocha --require test/setup.js --ui tdd test/*/*.js --compilers js:babel-register",
"transpile": "gulp --cwd . --gulpfile scripts/gulpfile.js transpile"
}
}