-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "remcalc",
"version": "1.0.10",
"license": "MPL-2.0",
"description": "Calculate the `rem`'s from `px` values",
"keywords": ["calc", "rem", "em", "px", "pixels", "pixel"],
"repository": "github:yldio/remcalc",
"main": "dist/remcalc.umd.js",
"jsnext:main": "dist/remcalc.es.js",
"module": "dist/remcalc.es.js",
"entry": "src/index.js",
"files": ["dist"],
"scripts": {
"lint": "eslint . --fix --ext .js --ext .md",
"fmt": "prettier --write --single-quote *.md src/*.js *.json",
"jest": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ava",
"test": "run-s lint jest size",
"prepublish": "NODE_ENV=production bup",
"size": "bundlesize"
},
"bundlesize": [
{
"path": "./src/index.js",
"maxSize": "350 B"
}
],
"dependencies": {
"bundlesize": "^0.17.0",
"lodash.flatten": "^4.4.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^10.0.1",
"babel-preset-joyent-portal": "^7.0.1",
"babel-register": "^6.26.0",
"bup": "^4.1.6",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-joyent-portal": "3.3.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.5",
"eslint-config-xo-space": "^0.20.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"graphql": "^14.0.2",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"prettier": "^1.15.2"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}