-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "scry-css",
"version": "0.4.2",
"description": "Suggestion engine for CSS variables and mixins",
"repository": {
"type": "git",
"url": "https://github.com/ovidiubute/scry-css.git"
},
"scripts": {
"test": "mocha test",
"test:watch": "npm run test -- -w",
"test:coverage": "istanbul cover node_modules/.bin/_mocha -- -- test",
"test:coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint src/**/*.js"
},
"bin": {
"scry-css": "src/bin/scry-css.js"
},
"pre-commit": [
"lint",
"test"
],
"author": "Ovidiu Bute <[email protected]>",
"license": "MIT",
"keywords": [
"css",
"less",
"sass",
"tools",
"helpers",
"discovery",
"search",
"command line",
"variables",
"mixins"
],
"dependencies": {
"bluebird": "^3.4.6",
"colour": "0.7.1",
"fuzzaldrin": "2.1.0",
"lodash": "4.14.1",
"node-dir": "0.1.15",
"yargs": "^6.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.12",
"eslint": "3.2.0",
"eslint-config-airbnb-base": "5.0.1",
"eslint-plugin-import": "1.12.0",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"mocha-lcov-reporter": "1.2.0",
"pre-commit": "1.1.3"
},
"engines": {
"node": "~6.0.0"
},
"preferGlobal": true
}