-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 888 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
{
"name": "node-lessify",
"version": "0.2.0",
"description": "LESS precompiler and CSS plugin for Browserify",
"main": "index.js",
"scripts": {
"test": "test/test.js && cd test/app && browserify -t ../../index debug.js > script.js",
"error": "test/error.js"
},
"repository": {
"type": "git",
"url": "https://github.com/wilson428/node-lessify"
},
"keywords": [
"less",
"css",
"browserify",
"browserify-transform"
],
"author": {
"name": "David Canas",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"less": "^3.12.2",
"object-assign": "^4.0.1",
"through2": "^2.0.1"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"browserify": "^13.0.0",
"less-plugin-autoprefix": "*"
},
"bugs": {
"url": "https://github.com/wilson428/node-lessify/issues"
}
}