-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "obsidian-framework",
"private": true,
"scripts": {
"build-doc": "bash ./scripts/build-doc.sh",
"test": "jest --coverage --coverageDirectory=build/coverage",
"test-watch": "jest --watch",
"coverage": "npm test && opn build/coverage/lcov-report/index.html",
"precommit": "lint-staged",
"publish-doc": "npm run build-doc && node ./scripts/publish-doc.js"
},
"author": "Wanadev",
"repository": "git@github.com:wanadev/obsidianjs.git",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.25.4",
"gh-pages": "^2.2.0",
"husky": "^2.7.0",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"jsdoc": "^3.6.7",
"jsdoc-plugin-abitbol": "^0.1.5",
"lerna": "^3.22.1",
"lint-staged": "^8.2.1",
"opn-cli": "^4.1.0",
"typescript": "^3.9.10"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"jest": {
"testURL": "http://localhost/"
}
}