-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 KB
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
{
"name": "@ostis/sc-core",
"version": "0.3.0",
"description": "Core library to work with sc-memory from web browser",
"main": "build/sc.js",
"types": "build/lib/index.d.ts",
"scripts": {
"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",
"prepublish": "npm run webpack-prod",
"prepare": "npm run webpack-prod",
"test": "npm run webpack-dev && mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ostis-dev/sc-core.git"
},
"author": "Denis Koronchik <denis.koronchik@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ostis-dev/sc-core/issues"
},
"homepage": "https://github.com/ostis-dev/sc-core#readme",
"devDependencies": {
"mocha": "^8.2.1",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
}
}