-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "@snapview/sunrise",
"version": "0.0.10",
"description": "The reactive library for the spreadsheet driven development",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"scripts": {
"test:unit": "jest src",
"test:types": "tsd",
"test": "npm run test:unit && npm run build && npm run test:types",
"build": "rollup -c",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install"
},
"files": [
"lib",
"package.json"
],
"types": "lib/index.d.ts",
"keywords": [],
"author": "Denis Krivosheev",
"license": "MIT",
"homepage": "https://github.com/snapview/sunrise#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/snapview/sunrise.git"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"husky": "^7.0.4",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"prettier": "2.3.1",
"rollup": "^2.51.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.0.3",
"tsd": "^0.19.1",
"typescript": "^4.3.2"
},
"tsd": {
"directory": "src"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}