-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "sisal-is",
"version": "0.1.0",
"description": "Modernized dialect of Sisal",
"main": "./build/sisal.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/parsifal-47/sisal-is.git"
},
"keywords": [
"sisal",
"interpreter",
"streams",
"dataflow",
"functional"
],
"author": "Renat Idrisov",
"license": "MIT",
"bugs": {
"url": "https://github.com/parsifal-47/sisal-is/issues"
},
"homepage": "https://github.com/parsifal-47/sisal-is#readme",
"dependencies": {
"@types/node": "^9.4.0",
"@types/pegjs": "^0.10.0",
"indent-adder": "git://github.com/parsifal-47/indent-adder.git",
"pegjs": "^0.10.0",
"pretty-data": "git://github.com/parsifal-47/pretty-data.git"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tsutils": "^2.21.0",
"typescript": "2.7.1"
}
}