forked from sparkdesignsystem/spark-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "spark-design-system",
"version": "2.1.1",
"author": "Quicken Loans",
"description": "A pattern library authoring environment",
"homepage": "https://github.com/sparkdesignsystem/spark-design-system",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sparkdesignsystem/spark-design-system"
},
"bugs": {
"url": "https://github.com/sparkdesignsystem/spark-design-system/issues"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"exclude": [
"packages/**/*.js",
"tests"
]
},
"devDependencies": {
"@cloudfour/gulp-tasks": "^2.4.0",
"@cloudfour/hbs-helpers": "^0.9.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^4.2.0",
"doctoc": "^1.3.1",
"drizzle-builder": "0.0.10",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-clean": "^0.4.0",
"gulp-cssnano": "^2.1.3",
"gulp-gh-pages": "^0.5.4",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"gulp-svg-sprite": "^1.5.0",
"gulp-util": "^3.0.7",
"husky": "^0.14.3",
"jsdom": "^12.0.0",
"lerna": "^3.4.0",
"lint-staged": "^6.1.1",
"mocha": "^5.2.0",
"mock-local-storage": "^1.0.5",
"nyc": "^13.0.1",
"postcss-cssnext": "^2.5.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2",
"request": "^2.88.0",
"sinon": "^7.2.2",
"stylelint": "^9.6.0",
"stylelint-scss": "^3.3.1",
"suitcss-base": "^2.0.0",
"suitcss-components-arrange": "^1.1.1",
"suitcss-components-button": "^5.0.0",
"suitcss-components-grid": "^3.0.2",
"suitcss-utils": "^1.0.0"
},
"scripts": {
"start": "gulp --dev",
"build": "npm install && gulp",
"precommit": "lint-staged",
"test": "npm run test --prefix ./packages/spark-core && npm run test --prefix ./packages/spark-highlight-board",
"visual-regression": "wraith capture wraith/configs/capture.yaml",
"spark-publish": "lerna bootstrap && lerna version && gulp pre-publish && lerna run lerna-publish"
},
"lint-staged": {
"*.scss": [
"prettier-stylelint --write",
"stylelint --syntax scss",
"git add"
],
"*.js": [
"prettier-eslint --write",
"eslint",
"git add"
]
},
"dependencies": {
"@scalescss/scalescss": "6.0.0-1",
"babel-polyfill": "^6.26.0",
"classlist.js": "^1.1.20150312",
"clipboard": "^2.0.1",
"critical": "^1.3.4",
"fancy-log": "^1.3.2",
"marked": "^0.3.19",
"npm": "^5.10.0",
"prismjs": "^1.15.0",
"run-sequence": "^2.2.1",
"tiny-date-picker": "^3.2.6"
}
}