This repository was archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.89 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.89 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "react-sticky-header",
"version": "0.2.0",
"description": "Lightweight sticky header made for React that works with both colours and images.",
"repository": "madou/react-sticky-header",
"author": "Michael Dougall",
"license": "MIT",
"keywords": [
"react",
"sticky header",
"header",
"sticky",
"header scroll",
"scroll"
],
"main": "index.js",
"jsnext:main": "index.es6.js",
"scripts": {
"start": "npm run storybook",
"test": "npm run lint && npm run flow && npm run cover",
"lint": "eslint src test tools",
"unit": "BABEL_ENV=test mocha \"src/**/*.spec.js\"",
"tdd": "npm run unit -- --reporter min --watch",
"cover": "BABEL_ENV=test nyc npm run unit",
"styles": "lessc src/*.less dist/styles.css",
"flow": "flow .",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "node tools/build && npm run styles",
"prepublish": "npm run build",
"preversion": "npm test",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"react": "^15.5.4"
},
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"app-module-path": "^2.2.0",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.6.1",
"changelog-verify": "^1.0.4",
"codecov": "^2.1.0",
"coveralls": "^2.11.9",
"del": "^2.2.0",
"enzyme": "^2.8.0",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^5.0.1",
"file-loader": "^0.11.1",
"flow-bin": "^0.43.1",
"istanbul": "^1.0.0-alpha.2",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mocha": "^2.4.5",
"normalize-css": "^2.3.1",
"nyc": "^10.2.0",
"proxyquire": "^1.7.11",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"rollup": "^0.26.2",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-less": "^0.1.3",
"sinon": "^1.17.0",
"sinon-chai": "^2.9.0",
"version-changelog": "^2.0.1"
},
"babel": {
"presets": [
[
"babel-preset-es2015",
{
"modules": false
}
],
"babel-preset-es2016",
"babel-preset-stage-0",
"babel-preset-react"
],
"plugins": [
"transform-runtime",
"transform-flow-strip-types",
"syntax-trailing-function-commas",
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread"
],
"env": {
"test": {
"presets": [
"babel-preset-es2015"
],
"plugins": [
"transform-runtime",
"transform-flow-strip-types",
"syntax-trailing-function-commas",
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"istanbul"
]
}
}
}
}