-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.53 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
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
{
"name": "quartzjs",
"version": "1.3.1",
"description": "A very useful library with fancy small functions",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build:babel": "babel dist -d dist",
"build:ts": "rm -rf dist && tsc -p tsconfig.json",
"build": "npm run build:ts && npm run build:babel",
"test": "nyc jasmine",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Diego Alberto Molina Vera <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DracotMolver/quartz-js"
},
"homepage": "https://dracotmolver.github.io/quartz-js/",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/node": "^14.14.2",
"coveralls": "^3.1.0",
"eslint": "^7.12.0",
"jasmine": "^3.6.2",
"jasmine-spec-reporter": "^6.0.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"typescript": "^4.0.3"
},
"keywords": [
"javascript",
"nodejs",
"functional programming",
"functions",
"help functions",
"utils",
"tools"
],
"dependencies": {
"core-js": "^3.6.5",
"regenerator-runtime": "^0.13.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
}
}