-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "cssrecipes-custom-media-queries",
"version": "0.3.0",
"description": "Some custom media queries shortcuts",
"keywords": [
"browser",
"style",
"css",
"css-components",
"css-recipes",
"cssrecipes",
"recipes",
"media queries"
],
"repository": {
"type": "git",
"url": "https://github.com/cssrecipes/defaults.git"
},
"author": "Maxime Thirouin",
"license": "MIT",
"main": "index.css",
"style": "index.css",
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"index.css"
],
"devDependencies": {
"cssnext": "^0.4.0"
},
"scripts": {
"setup": "npm install && mkdir -p build",
"preprocess": "cssnext index.css build/index.css",
"build": "npm run setup && npm run preprocess",
"preprocess-test": "cssnext test/test.css build/test.css",
"build-test": "npm run setup && npm run preprocess-test",
"test": "npm run build-test"
}
}