-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 982 Bytes
/
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
{
"name": "bobx",
"version": "1.2.1",
"description": "Mobx like library for Bobril",
"main": "index.js",
"types": "index.d.ts",
"typescript": {
"main": "index.ts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120
},
"bobril": {
"jasmineVersion": "4.0",
"compilerOptions": {
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"strict": true
}
},
"author": "Boris Letocha",
"license": "MIT",
"dependencies": {
"bobril": "*"
},
"devDependencies": {
"bobflux": "*",
"typescript": "*"
}
}