-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.75 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.75 KB
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
{
"name": "@airops/airops-js",
"version": "2.3.0",
"description": "JavaScript SDK for interacting with AirOps API",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"umd:main": "dist/index.umd.js",
"umd:minified": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/airopshq/airops-js"
},
"scripts": {
"tsc": "npx tsc",
"build:clean": "rm -rf ./dist",
"dev": "rollup -c -w --bundleConfigAsCjs",
"compile": "rollup -c --bundleConfigAsCjs",
"build": "NODE_ENV=staging npm-run-all build:clean compile",
"build:prod": "NODE_ENV=prod npm-run-all build:clean compile",
"test:unit": "jest",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.2",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"rollup": "^3.21.5",
"rollup-plugin-dotenv": "^0.4.1",
"rollup-plugin-polyfill-node": "^0.12.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"is-builtin-module": "^3.2.1",
"pusher-js": "^8.0.2",
"uuid": "^9.0.0"
},
"license": "MIT",
"lint-staged": {
"./src/*.{js,ts,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}