-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
34 lines (34 loc) · 961 Bytes
/
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
{
"name": "petit-dom",
"version": "0.6.0",
"description": "Minimalist virtual dom library",
"type": "module",
"main": "./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]>",
"devDependencies": {
"eslint": "^6.4.0",
"faucet": "^0.0.1",
"jsdom": "^15.1.1",
"tape": "^4.11.0"
},
"scripts": {
"lint": "eslint src test",
"test": "node 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"
}
}