-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@tecsinapse/es-utils",
"description": "A Utils library to turn life easy for Javascript projects",
"homepage": "https://github.com/tecsinapse/es-utils#readme",
"version": "6.0.10",
"main": "dist/index.cjs.js",
"module": "build/index.js",
"author": {
"name": "Tecsinapse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tecsinapse/es-utils.git"
},
"bugs": {
"url": "https://github.com/tecsinapse/es-utils/issues"
},
"dependencies": {
"accounting": "^0.4.1",
"big.js": "latest",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"@tecsinapse/eslint-config-tecsinapse-js": "^2.1.2",
"babel-plugin-emotion": "^10.0.5",
"documentation": "^12.1.2",
"eslint-plugin-jsdoc": "^15.12.1",
"git-dirty": "^1.0.2",
"husky": "^1.3.1",
"lint-staged": "7.3.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^0.66.6",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0"
},
"files": [
"build",
"dist"
],
"scripts": {
"build": "rm -rf build/ && babel src/ -d build/ && rollup -c",
"build:docs:html": "documentation --github --config documentation.yml build src/index.js -f html -o docs",
"build:docs:md": "documentation --github --config documentation.yml build src/index.js -f md > md-docs/README.md",
"dev": "rollup -c -w",
"start:docs:html": "documentation --github --config documentation.yml serve --watch src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --max-warnings=0 --fix",
"prettier --write",
"git add"
]
},
"sideEffects": false
}