-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.14 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
{
"name": "drizzle-builder",
"version": "0.0.10",
"description": "The builder for Drizzle",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "babel src --out-dir dist",
"coverage": "istanbul cover _mocha -- --recursive",
"prepublishOnly": "npm run test",
"pretest": "npm run build",
"test": "cross-env DRIZZLE_DEBUG=1 mocha --recursive",
"check-lint": "prettier --list-different '**/*.js' && eslint '**/*.js'",
"lint": "prettier --write '**/*.js' && eslint --fix '**/*.js'"
},
"keywords": [
"patterns",
"styleguide",
"components"
],
"author": "Cloud Four",
"license": "MIT",
"repository": "cloudfour/drizzle-builder",
"dependencies": {
"bluebird": "^3.3.1",
"deep-extend": "^0.5.1",
"front-matter": "^2.0.6",
"globby": "^4.0.0",
"handlebars": "^4.0.5",
"handlebars-layouts": "^3.1.3",
"js-beautify": "^1.6.2",
"js-yaml": "^3.5.3",
"marked": "^0.3.5",
"mkdirp": "^0.5.1",
"natsort": "^1.0.5",
"ramda": "^0.21.0"
},
"devDependencies": {
"@cloudfour/eslint-config": "^1.0.0",
"babel-cli": "^6.5.1",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-commonjs-simple": "^1.0.2",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"chai-fs": "^1.0.0",
"cross-env": "^3.1.3",
"eslint": "^5.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-unicorn": "^4.0.3",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"prettier": "^1.13.7",
"prettyjson": "^1.1.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"eslintConfig": {
"extends": "@cloudfour/eslint-config",
"env": {
"mocha": true
},
"rules": {
"no-unused-expressions": "off",
"max-nested-callbacks": "off",
"guard-for-in": "off",
"unicorn/filename-case": "off",
"no-prototype-builtins": "off"
}
},
"eslintIgnore": [
"dist"
],
"prettier": {
"singleQuote": true
}
}