-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 958 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 958 Bytes
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
{
"name": "@ostis/scg-js-editor",
"version": "0.3.0",
"description": "Implementation of scg-language tools for web",
"main": "build/scg.js",
"types": "build/lib/index.d.ts",
"scripts": {
"test": "test",
"prepublish": "npm run webpack-prod",
"watch": "webpack --progress --color --watch --config webpack.dev.js",
"webpack-dev": "webpack --progress --color --config webpack.dev.js",
"webpack-prod": "webpack --progress --color --config webpack.prod.js"
},
"keywords": [
"ostis",
"scg"
],
"author": "Denis Koronchik <denis.koronchik@gmail.com>",
"license": "MIT",
"dependencies": {
"@ostis/sc-core": "^0.3.0",
"d3": "^6.3.1"
},
"devDependencies": {
"@types/d3": "^6.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
}
}