-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
103 lines (103 loc) · 2.21 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
101
102
103
{
"name": "precinct",
"version": "12.1.2",
"description": "Unleash the detectives",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"mocha": "mocha",
"test": "npm run lint && npm run mocha",
"test:ci": "c8 npm run mocha"
},
"bin": {
"precinct": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dependents/node-precinct.git"
},
"keywords": [
"modules",
"amd",
"commonjs",
"es6",
"sass",
"less",
"detective",
"dependencies"
],
"author": "Joel Kemp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dependents/node-precinct/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"bin/cli.js",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/dependents/node-precinct",
"dependencies": {
"@dependents/detective-less": "^5.0.0",
"commander": "^12.1.0",
"detective-amd": "^6.0.0",
"detective-cjs": "^6.0.0",
"detective-es6": "^5.0.0",
"detective-postcss": "^7.0.0",
"detective-sass": "^6.0.0",
"detective-scss": "^5.0.0",
"detective-stylus": "^5.0.0",
"detective-typescript": "^13.0.0",
"detective-vue2": "^2.0.3",
"module-definition": "^6.0.0",
"node-source-walk": "^7.0.0",
"postcss": "^8.4.40",
"typescript": "^5.5.4"
},
"devDependencies": {
"c8": "^9.1.0",
"mocha": "^10.7.0",
"rewire": "^7.0.0",
"sinon": "^17.0.1",
"xo": "^0.59.2"
},
"xo": {
"space": true,
"ignores": [
"test/fixtures/*"
],
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"curly": [
"error",
"multi-line"
],
"operator-linebreak": [
"error",
"after"
],
"object-curly-spacing": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}