-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "stateme.js",
"version": "0.0.7",
"description": "super tiny reactive state inspired by Vue.js",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"dev": "npx webpack -w --mode=development --progress --color",
"build": "npx webpack --env prod --mode=production --progress --color",
"build:analyze": "npx webpack --env prod --mode=production --progress --color --analyze",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/adrienZ/stateme.js"
},
"homepage": "https://adrienz.github.io/stateme.js/",
"keywords": [
"react",
"vue",
"reactivity",
"javascript",
"stateme.js"
],
"author": "Adrien Zaganelli (https://adrienzaganelli.com/)",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"core-js": "^3.8.1",
"np": "^7.0.0",
"npm": "^6.14.9",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0"
}
}