-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.83 KB
/
package.json
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
{
"name": "@zrlps/rollup-plugin-resolve",
"version": "0.2.1",
"description": "Resolve plugin for rollupjs.",
"main": "dist/rollup-plugin-resolve.cjs.js",
"module": "dist/rollup-plugin-resolve.es.js",
"jsnext:main": "dist/rollup-plugin-node-resolve.es.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"acorn": "^7.1.0",
"glob": "^7.1.4",
"rollup-pluginutils": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"ava": "^2.4.0",
"fs-extra": "^8.1.0",
"is-var-name": "^2.0.0",
"nyc": "^14.1.1",
"rollup": "^1.27.13"
},
"peerDependencies": {
"codecov": "^3.8.1",
"rollup": "^1.27.13"
},
"scripts": {
"test:raw": "yarn build && node test/samples/_test.js",
"test": "ava",
"dev:test": "ava --verbose",
"predev:test": "npm run b:test && npm run build",
"b:test": "rollup -c test.rollup.config.js",
"pretest": "npm run b:test && npm run build",
"clean": "rm -rf dist .nyc_output",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t 9e28c7d8-3f15-46f6-888a-bc37143e30d6",
"ci:coverage": "nyc npm run test && npm run report-coverage ",
"build": "rollup -c",
"prepare": "npm run build",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrlps/rollup-plugin-resolve.git"
},
"keywords": [
"rollup-plugin",
"resolve"
],
"ava": {
"files": [
"test/**/*",
"test/samples/**",
"!test/sample/**",
"!test/dist/**",
"!test/fixtures/**"
]
},
"nyc": {
"include": [
"src/**/*.js",
"dist/**/*.js"
]
},
"author": "zkip <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zrlps/rollup-plugin-resolve/issues"
},
"homepage": "https://github.com/zrlps/rollup-plugin-resolve#readme",
"readme": "README.md"
}