-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"author": {
"name": "Stephen Isienyi",
"email": "[email protected]"
},
"bin": {
"@webKrafters/ordercss": "bin/ordercss.js",
"@webkrafters/ordercss": "bin/ordercss.js",
"ordercss": "bin/ordercss.js"
},
"contributors": [{
"email": "[email protected]",
"name": "steveswork",
"url": "https://github.com/steveswork"
}],
"description": "A CLI for curating and listing imports CSS module file paths according to import module hierarchy",
"dependencies": {
"chalk": "^4.1.0",
"esm": "^3.2.25",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"strip-comments": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest-cli": "^24.3.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"jest-cli": "^26.6.3",
"nodemon": "^2.0.6"
},
"files": [
"__mocks__/",
"bin/",
"src/",
"test/",
".babelrc",
".eslintrc.js",
"debug.js",
"index.js",
"nodemon.json",
"package-lock.json",
"package.json"
],
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file.js",
"\\.(css|less|scss)$": "<rootDir>/__mocks__/style.js"
},
"transform": {
"\\.[jt]sx?$": "babel-jest"
}
},
"keywords": [
"chunk styles",
"cli",
"conflicting order",
"css",
"css module",
"css-modules",
"cssextractplugin",
"mini-css-extract-plugin",
"minicssextractplugin",
"modular css",
"next js",
"next.js",
"nextjs",
"ordercss",
"ordercss-cli",
"webpack",
"webpack plugin",
"webpack plugins"
],
"license": "ISC",
"main": "src/index.js",
"name": "@webkrafters/ordercss",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/steveswork/ordercss.git"
},
"scripts": {
"debug": "eslint --fix && node debug.js",
"dev-watch": "nodemon --exec npm run debug",
"dev": "clear && npm run dev-watch",
"test": "eslint --fix && jest --watchAll"
},
"version": "1.1.8"
}