This repository was archived by the owner on Aug 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "rollup-plugin-replace",
"version": "2.2.0",
"devDependencies": {
"eslint": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"locate-character": "^2.0.5",
"mocha": "^6.2.0",
"prettier": "^1.16.4",
"rollup": "^1.9.1",
"rollup-plugin-buble": "^0.19.6",
"shx": "^0.3.2",
"source-map": "^0.7.3",
"typescript": "^3.4.3"
},
"main": "dist/rollup-plugin-replace.cjs.js",
"module": "dist/rollup-plugin-replace.es.js",
"dependencies": {
"magic-string": "^0.25.2",
"rollup-pluginutils": "^2.6.0"
},
"scripts": {
"test": "npm run test:only",
"test:only": "mocha && tsc",
"pretest": "npm run build",
"build": "rollup -c",
"prebuild": "shx rm -rf dist/*",
"lint": "prettier --write src/**/*.js test/test.js test/**/_config.js && eslint --fix src/**/*.js test/test.js test/**/_config.js",
"prepublishOnly": "npm run lint && npm run test:only",
"prepare": "npm run build"
},
"files": [
"src",
"dist",
"index.d.ts",
"README.md"
],
"repository": "rollup/rollup-plugin-replace",
"keywords": [
"rollup",
"rollup-plugin",
"es2015",
"npm",
"modules"
],
"author": "Rich Harris <richard.a.harris@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-plugin-replace/issues"
},
"homepage": "https://github.com/rollup/rollup-plugin-replace#readme"
}