-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.51 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.51 KB
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
{
"name": "kayzen-gs",
"version": "2.5.1",
"description": "A powerful framework for building responsive grid systems for the web",
"author": "(Edmund Reed)[http://twitter.com/esr360] <esr360@live.com>",
"homepage": "https://github.com/esr360/Kayzen-GS",
"main": "dist/kayzen-gs.js",
"keywords": [
"css",
"sass",
"scss",
"responsive",
"grid system",
"framework",
"react"
],
"bugs": {
"url": "https://github.com/esr360/Kayzen-GS/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/esr360/Kayzen-GS.git"
},
"dependencies": {
"Sass-Boost": "^1.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"concat": "^1.0.3",
"eslint": "^4.14.0",
"eslint-plugin-react": "^7.7.0",
"jsdoc": "^3.5.5",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"node-sass": "^4.7.2",
"node-sass-json-importer": "^3.0.2",
"postcss": "*",
"postcss-cli": "*",
"sass-true": "^3.0.0-beta.1",
"sassdoc": "^2.5.0",
"stylelint": "^8.4.0",
"webpack": "^3.10.0"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint './src/js/**/*.js'",
"lint:scss": "stylelint src/scss/**/*.scss",
"test": "npm run test:js && npm run test:scss",
"test:js": "mocha unit-testing/js/tests.js --require babel-register",
"test:scss": "mocha unit-testing/scss/tests.js --require babel-register",
"docs": "npm run docs:js && npm run docs:sass",
"docs:js": "jsdoc src/js -r -d docs/js",
"docs:sass": "sassdoc src/scss -d docs/sass",
"js": "webpack",
"sass": "npm run sass:build && npm run sass:dev && npm run sass:prod && npm run sass:autoprefix",
"sass:build": "node ./build/sass-concat.js",
"sass:dev": "node-sass src/scss/include-kayzen-gs.scss dist/kayzen-gs.css --output-style=expanded --importer=node_modules/node-sass-json-importer/dist/node-sass-json-importer.js",
"sass:prod": "node-sass src/scss/include-kayzen-gs.scss dist/kayzen-gs.min.css --output-style=compressed --importer=node_modules/node-sass-json-importer/dist/node-sass-json-importer.js",
"sass:autoprefix": "postcss --use autoprefixer -r dist/**/*.css --no-map",
"compile": "npm run lint && npm test && npm run docs && npm run js && npm run sass"
}
}