-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.26 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
65
66
67
68
69
70
{
"name": "insomnia_openapi",
"description": "Javascript helper utilities for applications",
"version": "0.0.4",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"author": {
"name": "Jason Jacobson",
"email": "jdesigns.jason@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/xjdesigns/insomnia_openapi"
},
"scripts": {
"build": "npm run build:types && npm run rollup",
"build:prod": "npm run clean && npm run build:types && npm run rollup -- --environment BUILD:production",
"build:types": "tsc --emitDeclarationOnly",
"build:watch": "npm run build:types -- --watch & npm run rollup -- --watch",
"lint": "eslint src/",
"jest": "jest",
"rollup": "rollup -c",
"test": "npm run jest",
"test:watch": "npm run jest -- --watch",
"test:coverage": "npm run jest -- --coverage",
"test:coveralls": "npm run test:coverage -- --coverageReporters=text-lcov | coveralls",
"type-check": "tsc --noEmit",
"prepublish": "npm run build:prod",
"release": "standard-version",
"clean": "rimraf lib"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.0",
"@babel/preset-typescript": "^7.3.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-cleaner": "^0.2.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}