-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 967 Bytes
/
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
{
"name": "scssify",
"version": "4.0.0",
"description": "Sass browserify transformer",
"repository": "cody-greene/scssify",
"main": "./lib/index.js",
"browser": "./lib/browser.js",
"files": [
"lib/"
],
"scripts": {
"watch": "mocha tests/*.js -bwR min",
"test": "mocha tests/*.js -bR tap"
},
"keywords": [
"browserify",
"browserify-transform",
"css",
"postcss-runner",
"sass",
"scss",
"transform"
],
"author": "Chris Hoage",
"license": "MIT",
"engines": {
"node": ">=14"
},
"eslintConfig": {
"root": true,
"extends": "./node_modules/@cody-greene/eslint-config/strict.yml",
"env": {
"node": true,
"es6": true
}
},
"devDependencies": {
"@cody-greene/eslint-config": "3.3.3",
"autoprefixer": "^10.4.0",
"jsdom": "^21.1.0",
"mocha": "^10.2.0",
"postcss": "^8.4.0"
},
"dependencies": {
"resolve": "^1.1.6",
"sass": "^1.59.2"
}
}