-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.13 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
{
"name": "organic-oval",
"version": "6.0.1",
"description": "organic frontend components as custom html tags",
"main": "index.js",
"scripts": {
"test": "jest",
"release-patch": "npm run test && npm version patch && npm publish && git push --tags && git push origin master",
"release-minor": "npm run test && npm version minor && npm publish && git push --tags && git push origin master",
"release-major": "npm run test && npm version major && npm publish && git push --tags && git push origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-organic/organic-oval.git"
},
"author": "Camplight",
"license": "MIT",
"bugs": {
"url": "https://github.com/node-organic/organic-oval/issues"
},
"homepage": "https://github.com/node-organic/organic-oval#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0"
},
"dependencies": {
"preact": "10.5.7"
}
}