-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (60 loc) · 1.58 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": "fn.sass",
"version": "0.6.0",
"description": "Functional programming in Sass.",
"homepage": "https://fabiommendes.github.io/fn.sass/",
"repository": "https://github.com/fabiommendes/fn.sass/",
"license": "MIT",
"author": "Fábio Mendes <fabiomacedomendes@gmail.com>",
"keywords": [
"functional",
"sass",
"scss"
],
"ignore": [
".appveyor.yml",
".editorconfig",
".eslintrc",
".github",
".gitignore",
".sasslintrc",
".travis.yml",
"backstop.conf.js",
"bower.json",
"changelog.md",
"composer.json",
"package.js",
"package.json",
"test"
],
"devDependencies": {
"editorconfig-tools": "^0.1.1",
"eslint": "^5.16.0",
"eslint-config-styled": "^0.0.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"onchange": "^5.2.0",
"sass-lint": "^1.12.1",
"sassdoc": "^2.6.0",
"sassdoc-theme-flippant": "^0.1.0"
},
"engines": {
"node": ">=4"
},
"scripts": {
"docs": "sassdoc -t flippant src && rm -rfv docs && mv sassdoc docs",
"start": "run-p lint test",
"clean": "rm dist -rfv",
"watch": "onchange src -- run-p test",
"lint": "sass-lint -c .sasslintrc src --verbose --no-exit && eslint test -c styled && editorconfig-tools check .",
"test": "node-sass tests/tests.scss || sassc tests/tests.scss",
"testn": "node-sass tests/tests.scss",
"testc": "sassc tests/tests.scss",
"benchmarks": "tests benchmarks/tests.scss",
"precommit": "run-p lint test docs",
"prerelease": "run-s test docs"
},
"resolutions": {
"natives": "1.1.3"
}
}