forked from css-modules/css-modules-require-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2 KB
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
75
{
"name": "@rurquia/css-modules-require-hook",
"version": "4.2.5",
"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/rurquia/css-modules/css-modules-require-hook.git"
},
"keywords": [
"css-modules",
"require",
"hook"
],
"author": {
"name": "Alexey Litvinov",
"email": "iamhoneyboy@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rurquia/css-modules/css-modules-require-hook/issues"
},
"homepage": "https://github.com/rurquia/css-modules/css-modules-require-hook",
"eslintConfig": {
"extends": "@sullenor/eslint-config/node",
"rules": {
"max-len": [
2,
120
]
}
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@sullenor/eslint-config": "next",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-debug": "^4.0.0",
"jest": "^26.4.2",
"mocha": "^7.1.1",
"postcss-less": "^3.1.4",
"pre-commit": "^1.2.2",
"sinon": "^9.0.3"
},
"dependencies": {
"debug": "^4.1.1",
"generic-names": "^2.0.1",
"glob-to-regexp": "^0.4.1",
"icss-replace-symbols": "^1.1.0",
"lodash": "^4.17.20",
"postcss": "^7.0.32",
"postcss-modules-extract-imports": "^2.0.0",
"postcss-modules-local-by-default": "^3.0.3",
"postcss-modules-resolve-imports": "^1.3.0",
"postcss-modules-scope": "^2.2.0",
"postcss-modules-values": "^3.0.0",
"seekout": "^1.0.2"
},
"scripts": {
"lint": "eslint src/**/*.js",
"prepublish": "npm run transpile",
"pretest": "npm run transpile",
"test": "NODE_PATH=$(pwd)/test/tokens/node_modules mocha --require @babel/register --require test/setup.js --ui tdd test/*/*.js ",
"transpile": "gulp --cwd . --gulpfile scripts/gulpfile.js transpile"
}
}