-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "godam",
"version": "1.2.8",
"description": "Modular & reactive state management framework",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"keywords": [
"store",
"generic",
"mahal",
"react",
"vue"
],
"scripts": {
"build": "npm run webpack:dev",
"build:pack": "npm run build && npm pack",
"webpack:dev": "webpack --config webpack/webpack.dev.config.js",
"webpack:prod": "webpack --config webpack/webpack.prod.config.js",
"test": "cd test && npm run test",
"build:test": "npm run build:pack && npm run install:test",
"install:test": "cd test && npm run install:test",
"deploy": "npm run clean && npm run build:test && npm run webpack:prod",
"prepublishOnly": "npm run deploy",
"clean": "del dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ujjwalguptaofficial/godam.git",
"absoluteUrl": "https://github.com/ujjwalguptaofficial/godam"
},
"author": "Ujjwal Gupta",
"license": "APACHE 2.0",
"bugs": {
"url": "https://github.com/ujjwalguptaofficial/godam/issues"
},
"homepage": "https://github.com/ujjwalguptaofficial/godam#readme",
"devDependencies": {
"@types/node": "^14.14.37",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"smart-banner-webpack-plugin": "^3.0.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"just-clone": "^5.0.1"
}
}