This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "just-box",
"version": "0.3.0",
"main": "lib/index.js",
"author": "Rafał Filipek <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"flow": "flow",
"format": "prettier --tab-width=2 --write --print-width=80 --parser=flow --single-quote --trailing-comma=es5 src/**/*",
"clean": "rm -rf lib",
"compile": "npm run clean && babel -d lib src",
"flow-copy": "flow-copy-source -v src lib",
"prepublish": "npm run clean && npm test && npm run compile && npm run flow-copy"
},
"files": [
"*.md",
"__test__",
"LICENSE",
"lib",
"src"
],
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.16.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.0",
"eslint-plugin-react": "^7.0.0",
"flow-bin": "^0.46.0",
"flow-copy-source": "^1.1.0",
"jest": "^20.0.0",
"publish-please": "^2.2.0",
"react": "^15.4.2"
},
"dependencies": {
"fela": "^4.2.6",
"fela-native": "^4.2.6",
"fela-plugin-fallback-value": "^4.2.6",
"fela-plugin-prefixer": "^4.2.6",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"react-fela": "^4.2.6"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverage": true
}
}