-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "lucejs",
"version": "0.2.98",
"description": "my personal front end framework",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "src/index.js",
"scripts": {
"prebuild": "npm run lint",
"build": "microbundle --name lucejs",
"postbuild": "npm publish",
"lint": "standard --fix",
"test": "jest",
"coverage": "jest --coverage",
"watch": "jest --watch"
},
"standard": {
"env": {
"jest": true
}
},
"keywords": [
"vanillajs",
"framework",
"front-end",
"lit-html",
"on-change"
],
"author": "Lorenzo Corbella",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/LorenzoCorbella74/luce.js"
},
"dependencies": {
"lit-html": "^1.1.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"on-change": "^1.6.2"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"standard": "^14.1.0"
}
}