-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"name": "@mwm/scoper",
"version": "1.5.0",
"description": "Map class names to the names generated by CSS Modules using Tagged Template Literals.",
"main": "index.js",
"module": "./src/main.js",
"scripts": {
"lint": "prettier --write src/**/*.js",
"pretest": "prettier-check src/**/*.js",
"test": "riteway -r esm src/**/*.test.js | tap-nirvana"
},
"keywords": [
"css-modules"
],
"author": "Matthew McMahon",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/matt-mcmahon/scoper.git"
},
"bugs": {
"url": "https://github.com/matt-mcmahon/scoper/issues"
},
"esm": {},
"homepage": "https://github.com/matt-mcmahon/scoper#readme",
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"dependencies": {
"esm": "^3.0.84"
},
"devDependencies": {
"husky": "^1.2.0",
"prettier": "^1.15.3",
"prettier-check": "^2.0.0",
"riteway": "^4.0.1",
"tap-nirvana": "^1.1.0"
}
}