-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.72 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
{
"name": "leopard-tie-client",
"version": "3.1.5",
"description": "Extended TIE Client that accepts additional custom request headers",
"main": "dist/cjs/index.js",
"browser": "dist/umd/leopardTieClient.js",
"module": "dist/es/index.js",
"jsxnext:main": "dist/es/index.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"prepublish": "npm run build",
"precommit": "npm run lint:test",
"prepush": "npm run lint:test",
"release": "release-it",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "npm run lint:eslint && npm run lint:flow",
"lint:eslint": "eslint src/*.js",
"lint:flow": "flow --color always",
"test": "jest",
"test:coverage": "jest --coverage ",
"test:watch": "clear && jest --watch",
"lint:test": "npm run lint && npm run test:coverage",
"build": "npm run lint:test && npm run build:cjs && npm run build:es && npm run build:umd",
"build:watch": "clear && rimraf dist/cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir dist/cjs",
"build:es": "rimraf dist/es && cross-env BABEL_ENV=es babel src --out-dir dist/es",
"build:cjs": "rimraf dist/cjs && cross-env BABEL_ENV=cjs babel src --out-dir dist/cjs",
"build:umd": "rimraf dist/umd && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c"
},
"keywords": [],
"author": "Peter Joles ([email protected])",
"license": "MIT",
"repository": "jolzee/leopard-tie-client",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-json": "^4.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.0",
"es6-promise": "^4.2.8",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"flow-bin": "^0.118.0",
"husky": "^4.3.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^25.5.4",
"release-it": "^13.7.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify-es": "0.0.1"
},
"dependencies": {
"browser-or-node": "^1.3.0",
"superagent": "^6.1.0",
"unescape-js": "^1.1.4"
}
}