forked from KyleAMathews/typography.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
{
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "19",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^1.0.1",
"compass-vertical-rhythm": "^1.3.1",
"eslint": "^3.19.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.45.0",
"glob": "^7.1.0",
"jest": "19",
"jest-cli": "19",
"json2md": "^1.5.8",
"lerna": "^2.0.0",
"lodash": "^4.17.4",
"phantom": "^4.0.1",
"phantomjs-prebuilt": "^2.1.14",
"prop-types": "^15.5.8",
"react": "^17.0.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"dist"
]
},
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"flow": "flow",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"format": "prettier --write packages/**/src/*.js",
"publish": "npm run build && lerna publish",
"test": "npm run build && npm run lint && npm run test-api",
"test-api": "jest",
"test-ci": "npm run build && npm run test-coverage && codecov",
"test-coverage": "npm run test-api -- --coverage",
"watch": "lerna run watch"
},
"dependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"prettier": "^2.3.0"
}
}