-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 KB
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
49
50
51
52
53
54
{
"name": "morphonent",
"version": "0.16.0",
"description": "UI functional microframework",
"main": "dist/index.js",
"keywords": [
"frontend",
"front end",
"ui",
"renderer",
"functional"
],
"repository": "git@github.com:kmruiz/morphonent.git",
"author": "Kevin Mas Ruiz <masruizkevin@gmail.com>",
"contributors": [
"Kevin Mas Ruiz <masruizkevin@gmail.com>"
],
"license": "MIT",
"scripts": {
"test": "jest --coverage --watchAll",
"test:once": "jest",
"test:ci": "jest --coverage",
"build": "rollup -c",
"lint": "eslint -c .eslintrc.json lib/",
"lint:fix": "eslint -c .eslintrc.json --fix lib/",
"verify": "npm run lint && npm run test:ci && npm run build",
"verify:once": "npm run lint && npm run test:once && npm run build",
"release:patch": "npm run verify:once && npm version patch",
"release:minor": "npm run verify:once && npm version minor",
"release:major": "npm run verify:once && npm version major",
"release": "git push && git push --tags"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-utils": "^2.1.0",
"faker": "^4.1.0",
"jest": "^26.3.0",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.23.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.0"
}
}