forked from yelouafi/petit-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 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
{
"name": "petit-dom",
"version": "0.3.4",
"description": "Minimalist virtual dom library",
"type": "module",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/yelouafi/petit-dom.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/petit-dom/issues"
},
"keywords": [
"javascript",
"virtual dom"
],
"author": "Yassine ELOUAFI <[email protected]>",
"dependencies": {},
"devDependencies": {
"eslint": "^6.4.0",
"esm": "^3.2.25",
"faucet": "^0.0.1",
"jsdom": "^15.1.1",
"tape": "^4.11.0"
},
"scripts": {
"lint": "eslint src test",
"test": "node -r esm test/index.js | faucet",
"check": "npm run lint && npm run test",
"release:patch": "npm version patch && git push --follow-tags && npm publish",
"release:minor": "npm version minor && git push --follow-tags && npm publish",
"release:major": "npm version major && git push --follow-tags && npm publish"
}
}