-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 3.37 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
91
92
{
"name": "react-scale-text",
"version": "1.2.2",
"description": "A React component for keeping a component's text sized to fill it's container",
"main": "lib/react-scale-text.js",
"module": "lib/index.js",
"scripts": {
"clean": "rimraf lib coverage cov",
"build": "babel src --out-dir lib --ignore __tests__,__mocks__ && npm run build:umd",
"build:umd": "webpack && NODE_ENV=production webpack",
"build:analyze": "webpack --json > ./lib/build-stats.json",
"lint": "eslint src",
"test": "npm run test:mocha",
"test:cov": "npm run instrument && npm run test:mocha-cov && npm run coverage",
"test:mocha": "electron-mocha ./tests/**/*.spec.js* --renderer --compilers js:@babel/register --timeout 10000",
"test:mocha-cov": "electron-mocha ./tests/**/*.spec.js* --renderer --compilers js:@babel/register --timeout 5000 -r ./tests/coverage.js",
"instrument": "babel-istanbul instrument src --output cov --no-compact --complete-copy --es-modules",
"coverage": "babel-istanbul report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd",
"release": "standard-version",
"start": "npm install && cd examples/simple && npm install && npm start"
},
"repository": {
"type": "git",
"url": "https://github.com/datchley/react-scale-text.git"
},
"keywords": [
"react-scale-text"
],
"author": "David Atchley <david.m.atchley@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datchley/react-scale-text/issues"
},
"homepage": "https://github.com/datchley/react-scale-text",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.35",
"@babel/plugin-transform-destructuring": "^7.0.0-beta.35",
"@babel/plugin-transform-spread": "^7.0.0-beta.35",
"@babel/preset-es2015": "^7.0.0-beta.35",
"@babel/preset-react": "^7.0.0-beta.35",
"@babel/register": "^7.0.0-beta.35",
"babel-eslint": "^8.0.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.0",
"chai-jsx": "^1.0.1",
"co-exec": "^1.0",
"codecov": "^2.1.0",
"coveralls": "^2.11.8",
"electron": "^1.8.0",
"electron-mocha": "^4.0.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"ghooks": "^2.0.0",
"invariant": "^2.2.2",
"istanbul": "^0.4.5",
"istanbul-api": "^1.1.7",
"istanbul-lib-coverage": "^1.0.2",
"jest": "^19.0.2",
"jest-mock": "^19.0.0",
"jest-util": "^19.0.2",
"jsdom": "^9.12.0",
"nyc": "^10.0.0",
"querystring": "^0.2.0",
"rimraf": "^2.5.0",
"serve": "^5.1.5",
"standard": "^9.0.2",
"standard-version": "^4.0.0",
"travis": "^0.1.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2",
"xvfb-maybe": "^0.2.0"
},
"dependencies": {
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^15.4.2 || ^16.0.0",
"react-dom": "^15.4.2 || ^16.0.0",
"shortid": "^2.2.8",
"warning": "^3.0.0"
}
}