-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
82
83
84
85
86
{
"name": "@lunelson/homework",
"version": "2.0.0-beta.5",
"description": "An ultra-responsive, design-primitives and utility Sass CSS framework",
"keywords": [],
"homepage": "https://github.com/lunelson/homework#readme",
"bugs": {
"url": "https://github.com/lunelson/homework/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunelson/homework.git"
},
"license": "MIT",
"author": "Lu Nelson",
"main": "index.js",
"module": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"links": "npm link @lunelson/sass-calc @lunelson/sass-maps-plus @lunelson/sass-throw @lunelson/sass-u",
"start": "ava --watch",
"test": "ava",
"test:scratch": "npm t -- --watch --match *scratch*",
"test:www": "penny serve tests/www"
},
"devDependencies": {
"@lunelson/penny": "^2.0.0-alpha.14",
"@lunelson/sass-calc": "latest",
"@lunelson/sass-lerp": "latest",
"@lunelson/sass-maps-next": "latest",
"@lunelson/sass-throw": "latest",
"@lunelson/sass-u": "latest",
"ava": "^2.3.0",
"del": "^5.0.0",
"destyle.css": "^1.0.9",
"markdown-it-container": "^2.0.0",
"markdown-it-custom-block": "^0.1.1",
"markdown-it-mentions": "^1.0.0",
"markdown-it-prism": "^2.0.2",
"mathsass": "^0.10.1",
"node-hook": "^1.0.0",
"node-sass": "^4.12.0",
"require-extension-hooks": "^0.3.3",
"sass": "^1.22.10",
"strip-css-comments": "^4.0.0",
"write": "^1.0.3"
},
"peerDependencies": {
"@lunelson/sass-calc": "latest",
"@lunelson/sass-lerp": "latest",
"@lunelson/sass-maps-next": "latest",
"@lunelson/sass-throw": "latest",
"@lunelson/sass-u": "latest",
"mathsass": "latest"
},
"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": {}
}