-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "less-bundle",
"version": "0.2.1",
"description": "Bundle less css compiler into a single dist that could be used in web workers",
"main": "index.js",
"scripts": {
"test": "eslint \"**/*.js\" --cache && mocha",
"build": "rollup -c",
"preversion": "npm test",
"version": "npm run build && git add .",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openstyles/less-bundle.git"
},
"keywords": [
"less",
"css",
"preprocessor",
"browser"
],
"author": "eight <[email protected]> (http://eight04.blogspot.tw)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openstyles/less-bundle/issues"
},
"homepage": "https://github.com/openstyles/less-bundle#readme",
"devDependencies": {
"@nodelib/fs.walk": "^1.2.6",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"eslint": "^7.18.0",
"less": "^4.1.0",
"mocha": "^8.2.1",
"rollup": "^2.36.2",
"rollup-plugin-cjs-es": "^1.0.1",
"rollup-plugin-external-globals": "^0.6.1",
"rollup-plugin-terser": "^7.0.2"
},
"eslintIgnore": [
"dist",
"test/less"
]
}