-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (44 loc) · 1.15 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
{
"name": "ifc-ts",
"description": "ifc-ts is a library that provides developers with an API\r for specifying information-flow security constraints in\r effectful code. These constraints are checked statically\r by TypeScript's type checker. Consequently, if an effectful\r computation, written using this API, is well-typed, then it\r is information-flow secure (aka. noninterfering).",
"version": "1.0.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willardthor/ifc-ts.git"
},
"keywords": [
"ifc",
"IFC",
"information",
"non-interference",
"noninterference",
"LIO",
"flow",
"control",
"security",
"ITU",
"static",
"analysis",
"typescript"
],
"author": "Willard Rafnsson & Mark Kragerup",
"license": "ISC",
"bugs": {
"url": "https://github.com/willardthor/ifc-ts/issues"
},
"homepage": "https://github.com/willardthor/ifc-ts#readme",
"dependencies": {
"@types/node": "^20.2.5"
},
"devDependencies": {
"typescript": "^5.1.3"
}
}