-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "karma-scss-preprocessor",
"version": "4.0.0",
"description": "Karma preprocessor to compile SCSS on the fly with node-sass",
"license": "ISC",
"repository": "amercier/karma-scss-preprocessor",
"author": "Alex Mercier <pro.alexandre.mercier@gmail.com> (http://amercier.com)",
"engines": {
"node": ">=6.0"
},
"scripts": {
"transpile": "rimraf dist && babel src -d dist",
"prepublish": "npm run transpile",
"lint": "eslint .",
"mocha": "mocha specs/lib --recursive --compilers js:babel-register",
"start": "export NODE_ENV=development; npm run mocha -- --watch --growl",
"test": "export NODE_ENV=test; npm run lint && rimraf coverage && nyc npm run mocha"
},
"main": "dist/lib/index.js",
"keywords": [
"karma-plugin",
"karma-preprocessor",
"sass",
"scss",
"node-sass"
],
"dependencies": {
"chalk": "^2.4.1",
"lodash": "^4.17.11",
"strip-ansi": "^5.0.0"
},
"peerDependencies": {
"node-sass": ">= 3.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"esdoc": "^1.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"karma": "^3.1.3",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^5.2.0",
"node-sass": "^4.10.0",
"npm": "^6.4.1",
"nyc": "^13.1.0",
"phantomjs-prebuilt": "^2.1.16",
"rimraf": "^2.6.2",
"sinon": "^7.1.1"
},
"nyc": {
"exclude": "specs/**/*.spec.js",
"sourceMap": false,
"instrument": false,
"reporter": [
"lcovonly",
"html",
"text"
]
}
}