-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "fxsvg",
"version": "0.4.17",
"description": "Functional SVG Handling Library",
"type": "module",
"main": "./src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"np": "npx -p np -c 'np --branch master --yolo --no-publish --no-yarn'",
"test:server": "node test/server.js",
"test:client": "node bin/test.client.js",
"test:client:headless": "node bin/test.client.js --headless",
"build": "node bin/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marpple/FxSVG.git"
},
"keywords": [
"SVG"
],
"author": "dev_marpple <dev@marpple.com>",
"maintainers": [
"dev_marpple <dev@marpple.com>",
"kunholee <khl@marpple.com>",
"daengdaenglee <gunho1020@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marpple/FxSVG/issues"
},
"homepage": "https://github.com/marpple/FxSVG#readme",
"devDependencies": {
"chai": "^4.3.0",
"express": "^4.17.1",
"mocha": "^8.3.0",
"playwright": "^1.8.1",
"prettier": "2.2.1",
"webpack": "^5.24.0",
"webpack-dev-middleware": "^4.1.0",
"yargs": "^16.2.0"
},
"dependencies": {
"fxdom": "^0.8.0",
"fxjs": "^0.21.1"
}
}