-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "media-blender",
"version": "2.1.0",
"description": "Easy and predictable media queries",
"main": "media.scss",
"scripts": {
"build": "sass --sourcemap=none test.scss test.css",
"test": "npm run __stylelint && mocha test/test_sass.js",
"__stylelint": "stylelint \"*.scss\" --syntax scss",
"precommit": "npm test",
"watch": "npm-watch"
},
"watch": {
"test": {
"patterns": [".", "test"],
"extensions": "js,scss",
"ignore": "./test.scss"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/infinum/media-blender.git"
},
"keywords": [
"scss",
"mixin",
"media",
"mobile",
"desktop",
"tablet",
"blender",
"retina",
"orientation",
"landscape",
"portrait",
"css"
],
"author": "Infinum <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinum/media-blender/issues"
},
"homepage": "https://github.com/infinum/media-blender#readme",
"devDependencies": {
"husky": "^0.13.0",
"mocha": "^3.1.2",
"mocha-cli": "^1.0.1",
"node-sass": "^4.0.0",
"npm-watch": "^0.1.6",
"sass-true": "^2.1.3",
"stylelint": "^7.5.0"
}
}