-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
90 lines (90 loc) · 2.59 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
{
"name": "flexcss",
"description": "A lightweight Flexbox based mobile-first CSS/Javascript pattern-library",
"dependencies": {
"isomorphic-fetch": "^2.2.0",
"whatwg-fetch": "^1.0.0"
},
"version": "0.0.0-semantically-released",
"main": "src/main/modules/All.js",
"keywords": [
"css",
"mobile-first",
"responsive",
"front-end",
"framework",
"patterns"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BowlingX/flexcss.git"
},
"homepage": "https://hellofellow.com",
"author": "hellofellow KG, David Heidrich",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.3.19",
"coveralls": "^2.11.4",
"css-loader": "^0.23.0",
"del": "^2.0.2",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^8.0.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"event-stream": "^3.3.2",
"exports-loader": "^0.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.4",
"html-loader": "^0.4.0",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.0",
"istanbul-instrumenter-loader": "^0.2.0",
"jasmine-core": "^2.3.4",
"jquery": "^2.1.4",
"karma": "^0.13.15",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-jquery": "^0.1.1",
"karma-junit-reporter": "^1.0.0",
"karma-webpack": "^1.7.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.4.1",
"postcss-loader": "^0.9.1",
"sass-loader": "^3.1.1",
"semantic-release": "^4.3.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.4"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/dist/lib/plugin-noop.js"
}
},
"engines": {
"node": ">=0.10.1"
},
"scripts": {
"test": "karma start --single-run --ci",
"tdd": "karma start --auto-watch",
"dist": "rm -Rf build && export NODE_ENV=production && webpack --optimize-minimize --optimize-occurence-order && export NODE_ENV=dev && webpack",
"develop": "webpack --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}