-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "rollup-plugin-less-modules",
"version": "0.1.11",
"description": "The rollup plugin that compiles imported LESS files into CSS",
"main": "dist/rollup-plugin-less-modules.js",
"module": "src/index.js",
"scripts": {
"release": "npm version patch -f -m \"Version %s release\" && npm publish",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push --tags",
"pretest": "npm run build",
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katrotz/rollup-plugin-less-modules.git"
},
"keywords": [
"rollup-plugin",
"less",
"css"
],
"author": "Vyacheslav Cotruta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/katrotz/rollup-plugin-less-modules/issues"
},
"homepage": "https://github.com/katrotz/rollup-plugin-less-modules#readme",
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"peerDependencies": {
"postcss": "^7.0.7"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.4.3",
"ava": "^1.0.1",
"postcss": "^7.0.7",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"clean-css": "^4.2.1",
"fs-extra": "^2.1.2",
"less": "^3.9.0",
"rollup-pluginutils": "^2.3.3",
"source-map": "^0.7.3"
}
}