forked from webpack-contrib/less-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "less-loader",
"version": "4.0.3",
"author": "Johannes Ewald @jhnns",
"description": "Less loader for webpack. Compiles Less to CSS.",
"main": "dist/index.js",
"scripts": {
"create-spec": "babel-node test/helpers/createSpec.js",
"pretest": "npm run create-spec",
"test": "jest",
"posttest": "npm run lint",
"travis:test": "yarn run test",
"appveyor:test": "npm test",
"lint": "eslint --cache src test",
"webpack-defaults": "webpack-defaults",
"start": "yarn run serve:dev src",
"build": "cross-env NODE_ENV=production babel -s true src -d dist --ignore 'src/**/*.test.js'",
"clean:dist": "del-cli dist",
"lint-staged": "lint-staged",
"prebuild": "yarn run clean:dist",
"prepublish": "yarn run build",
"release": "yarn run standard-version",
"security": "nsp check",
"serve:dev": "nodemon $2 --exec babel-node",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"travis:coverage": "yarn run test:coverage",
"travis:lint": "yarn run lint && yarn run security"
},
"engines": {
"node": ">=4.3 <5.0.0 || >=5.10"
},
"dependencies": {
"clone": "^2.1.1",
"loader-utils": "^1.1.0",
"pify": "^2.3.0"
},
"peerDependencies": {
"less": "^2.3.1",
"webpack": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.2",
"cross-env": "^3.2.4",
"del-cli": "^0.2.1",
"eslint": "^3.18.0",
"eslint-config-webpack": "^1.2.1",
"eslint-plugin-import": "^2.2.0",
"inspect-loader": "^1.0.0",
"jest": "^19.0.2",
"less": "^2.3.1",
"lint-staged": "^3.4.0",
"nodemon": "^1.11.0",
"nsp": "^2.6.3",
"pre-commit": "^1.2.2",
"standard-version": "^4.0.0",
"webpack": "^2.3.2",
"webpack-defaults": "^0.4.5"
},
"repository": {
"type": "git",
"url": "git://github.com/webpack-contrib/less-loader.git"
},
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"dist"
],
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}