-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.06 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
{
"name": "@patrickroberts/template",
"version": "1.0.0",
"description": "Rollup template for TypeScript projects",
"repository": "github:patrickroberts/template",
"main": "dst/cjs/template.js",
"module": "dst/esm/template.js",
"browser": "dst/umd/template.js",
"types": "dst/esm/template.d.ts",
"scripts": {
"clean:test": "rimraf coverage",
"clean:build": "rimraf dst",
"clean:docs": "rimraf docs/**/*.md",
"clean": "concurrently 'npm:clean:*'",
"lint": "eslint . --ext .js,.ts",
"test": "jest --coverage",
"build": "rollup --config --environment NODE_ENV:production",
"rebuild": "npm run clean:build && npm run build",
"docs": "typedoc src/index.ts",
"watch:test": "npm test -- --watch",
"watch:build": "npm run build -- --environment NODE_ENV:development --watch",
"watch:docs": "npm run docs -- --watch",
"watch": "concurrently 'npm:watch:*'",
"prepublishOnly": "npm run clean && npm run lint && npm test && npm run build && npm run docs"
},
"author": "Patrick Roberts",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^26.6.3",
"concurrently": "^6.4.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"nlfurniss-typedoc-plugin-sourcefile-url": "^2.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.36.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.4",
"ts-jest": "^26.4.4",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.4.4"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"maintained node versions"
],
"production": [
"defaults"
],
"test": [
"maintained node versions"
]
}
}