-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "@docknetwork/es6-library-template",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/docknetwork/es6-library-template"
},
"engines": {
"node": ">=13.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-wasm": "^5.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^14.14.35",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.5.0",
"concurrently": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-sonarjs": "0.5.0",
"glob": "^7.1.6",
"jest": "24.5.0",
"jsdoc": "^3.6.3",
"rollup": "2.28.1",
"typescript": "^4.2.3"
},
"scripts": {
"lint": "eslint \"{src,tests,example}/**/*.js\"",
"build": "rollup -c",
"watch": "rollup -c -w",
"run-example": "npx babel-node example/index.js",
"test": "jest --verbose ./tests",
"docs": "mkdir out && touch out/.nojekyll && jsdoc src -r -c .jsdoc -d out/reference",
"type-check": "tsc --allowJs --checkJs --noEmit --moduleResolution node --resolveJsonModule --target ES6 --skipLibCheck true --allowSyntheticDefaultImports true"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {}
}