forked from rollup/stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.3 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@rollup/stream",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "Stream Rollup build results",
"license": "MIT",
"repository": "rollup/stream",
"author": "Andrew Powell <andrew@shellscape.org>",
"homepage": "https://github.com/rollup/stream#readme",
"bugs": "https://github.com/rollup/stream/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">= 10.20.1"
},
"scripts": {
"build": "rollup -c",
"ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run build && npm run lint",
"ci:test": "npm run test -- --verbose",
"lint": "npm run lint:js && npm run lint:docs && npm run lint:package",
"lint:docs": "prettier --single-quote --write README.md",
"lint:js": "eslint --fix --cache src --ext .js,.ts",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"prebuild": "del-cli dist",
"prepublishOnly": "npm run lint && npm run build",
"pretest": "npm run build -- --sourcemap",
"security": "npm audit --audit-level=moderate",
"test": "ava"
},
"files": [
"dist",
"types",
"README.md",
"LICENSE"
],
"keywords": [
"rollup",
"plugin",
"utils"
],
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^4.1.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"ava": "^3.8.1",
"del-cli": "^3.0.0",
"eslint-config-rollup": "^0.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"prettier-plugin-package": "^1.0.0",
"rollup": "^2.7.6",
"ts-node": "^8.5.2",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"types": "types/index.d.ts",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"!**/fixtures/**",
"!**/helpers/**",
"!**/recipes/**",
"!**/types.ts"
]
},
"nyc": {
"extension": [
".js",
".ts"
]
}
}