-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 906 Bytes
/
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
{
"name": "@pikpokjeon/super-svg-helper",
"version": "0.0.01",
"description": "svg related helper tools for web",
"author": "pikpok",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pikpokjeon/SSH.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "test/index.js",
"test": "test/index.js",
"files": [
"dist"
],
"scripts": {
"parcel": "parcel index.html",
"test": "mocha --reporter spec",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"keywords": [],
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"rollup": "^2.45.2",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"jest": "^27.0.2"
}
}