-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "flyps",
"version": "0.6.7",
"description": "Flyps is just flyps.",
"browser": "dist/flyps.umd.js",
"module": "dist/flyps.esm.js",
"main": "dist/flyps.cjs.js",
"scripts": {
"build": "rollup -c",
"docs": "jsdoc -c .jsdoc",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"prepare": "npm run build && npm run docs",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"serveDocs": "docma serve",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Contargo/flyps.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Contargo/flyps/issues"
},
"homepage": "https://contargo.github.io/flyps/",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.0",
"jsdoc": "^3.6.7",
"prettier": "^2.5.0",
"rollup": "^2.60.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
],
"coverageDirectory": "<rootDir>/coverage",
"roots": [
"<rootDir>/src"
],
"testEnvironment": "jsdom"
}
}