-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "@pectin/core",
"version": "4.0.3",
"description": "Core implementation of pectin logic",
"keywords": [
"rollup",
"pectin",
"config",
"tree-shake"
],
"author": "Daniel Stockman <[email protected]>",
"homepage": "https://github.com/evocateur/pectin/tree/latest/packages/pectin-core#readme",
"license": "ISC",
"main": "dist/pectin-core.js",
"types": "dist/pectin-core.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=8.9"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evocateur/pectin.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
},
"peerDependencies": {
"rollup": ">=1.12.0"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@pectin/babelrc": "file:../pectin-babelrc",
"@schemastore/package": "^0.0.5",
"babel-core": "^7.0.0-bridge.0",
"camelcase": "^5.0.0",
"dot-prop": "^5.1.0",
"npm-package-arg": "^6.1.0",
"p-map": "^3.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-main-entry": "file:../rollup-plugin-main-entry",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-subpath-externals": "file:../rollup-plugin-subpath-externals",
"rollup-plugin-svg": "^1.0.1",
"rollup-plugin-terser": "^5.0.0"
},
"devDependencies": {
"tacks": "^1.3.0",
"tempy": "^0.3.0",
"ts-jest": "^24.2.0"
}
}