-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 851 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 851 Bytes
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
{
"name": "fis-parser-sass",
"description": "A parser plugin for fis to compile sass file.",
"version": "1.2.0",
"author": "FIS Team <[email protected]>",
"homepage": "http://fis.baidu.com/",
"keywords": [
"fis",
"sass"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fouber/fis-parser-sass.git"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "mocha --reporter dot --check-leaks test/",
"test-cov": "env istanbul=1 mocha --reporter dot --check-leaks test/",
"test-travis": "env istanbul=1 istanbul_report=lcovonly mocha --reporter spec --check-leaks test/",
"dev": "rm -rf debug && node ./node_modules/fis/bin/fis release -cf ./test/fixtures/basic/fis-conf.js -r ./test/fixtures/basic -d ./debug"
},
"dependencies": {
"sass": "1.39.2"
}
}