-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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": "bobril",
"version": "21.0.0",
"description": "Component Oriented MVC Framework with virtual DOM and CSS",
"main": "index.js",
"types": "index.d.ts",
"typescript": {
"main": "index.ts"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120
},
"scripts": {
"prepublishOnly": "prettier --write index.ts && prettier --write -c src && prettier --write -c spec && bb test",
"test": "bb test"
},
"bobril": {
"compilerOptions": {
"target": "ES2018",
"lib": [
"ES2018",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
"strict": true,
"noPropertyAccessFromIndexSignature": true,
"reactNamespace": "b"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bobris/Bobril.git",
"directory": "package"
},
"author": "Boris Letocha",
"license": "MIT",
"devDependencies": {
"prettier": "*",
"typescript": "*"
}
}