-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 2.98 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"type": "module",
"private": true,
"author": "Ponomarev Denis",
"name": "fiera",
"version": "20.11.18",
"description": "Фиера - конструктор презентаций и графических редакторов",
"main": "src/fiera.node.js",
"directories": {
"lib": "lib"
},
"keywords": [
"canvas",
"graphic",
"graphics",
"SVG",
"node-canvas",
"parser",
"HTML5",
"object model"
],
"contributors": [
{
"name": "Denis Ponomarev",
"email": "[email protected]",
"url": "http://cv.hometlt.ru"
}
],
"browser": {
"canvas": false,
"fs": false,
"jsdom": false,
"jsdom/lib/jsdom/living/generated/utils": false,
"jsdom/lib/jsdom/utils": false,
"http": false,
"https": false,
"xmldom": false,
"url": false
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon demo/server/server.js",
"dev": "webpack --mode development",
"prod": "webpack --mode production",
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
"webpack": "webpack",
"build-node": "webpack --config ./webpack.config.node.js",
"build-demo": "webpack --config ./webpack.config.demo.js -w"
},
"browse'startrslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "ISC",
"dependencies": {
"bent": "^7.3.12",
"canvas": "git+https://github.com/samizdatco/node-canvas.git#pattern-transform",
"crypto-js": "4.0.0",
"fontkit": "1.8.1",
"gl": "4.8.0",
"image-type": "4.1.0",
"jsdom": "16.4.0",
"linebreak": "1.0.2",
"png-js": "1.0.0",
"pngjs": "6.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/polyfill": "^7.0.0",
"@babel/runtime-corejs2": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-transform-vue-jsx": "^4.0.1"
}
}