-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.54 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
{
"name": "@lunelson/sass-lerp",
"version": "1.0.0",
"description": "Create dynamically interpolated values with CSS calc() expressions",
"keywords": [
"calc",
"lerp",
"dart-sass",
"libsass",
"sass"
],
"homepage": "https://github.com/lunelson/sass-lerp#readme",
"bugs": {
"url": "https://github.com/lunelson/sass-lerp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunelson/sass-lerp.git"
},
"license": "MIT",
"author": "Lu Nelson",
"main": "_index.scss",
"directories": {
"test": "tests"
},
"scripts": {
"test": "ava",
"start": "ava --watch",
"beforeStage": "npx auto-changelog"
},
"devDependencies": {
"@lunelson/sass-calc": "^1.2.0",
"@lunelson/sass-throw": "^2.1.0",
"ava": "^2.4.0",
"del": "^5.1.0",
"node-sass": "^4.13.1",
"require-extension-hooks": "^0.3.3",
"sass": "^1.25.0",
"strip-css-comments": "^4.1.0",
"write": "^2.0.0"
},
"peerDependencies": {
"@lunelson/sass-calc": "^1.2.0",
"@lunelson/sass-throw": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"ava": {
"extensions": [
"scss"
],
"compileEnhancements": false,
"require": [
"./tests/helpers/setup.js"
],
"files": [
"tests/*.scss",
"!tests/_*/**",
"!tests/_*"
],
"sources": [
"_index.scss",
"scss/**/*.scss",
"!scss/_*/**"
]
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"core-js": "^3.6.4"
}
}