-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
118 lines (118 loc) · 2.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "millan",
"version": "5.3.0",
"description": "The Stardog Whisperer (error-tolerant parsers for languages used with Stardog)",
"keywords": [
"stardog",
"sparql",
"rdf",
"turtle",
"trig",
"query",
"knowledge graph",
"linked data",
"semantic web",
"rules",
"shacl",
"graphql"
],
"main": "dist/millan.js",
"browser": "dist/browser/millan.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"docs/"
],
"author": {
"name": "Stardog Union",
"url": "https://stardog.com"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Jason Rogers",
"email": "jason@stardog.com"
},
{
"name": "Matt Scandalis",
"email": "scandalis.matthew@gmail.com"
},
{
"name": "Ty Soehngen",
"email": "ty@stardog.com"
},
{
"name": "Sandra Gonzales",
"email": "sandy@stardog.com"
},
{
"name": "Annee Barrett",
"email": "annee@stardog.com"
},
{
"name": "Brian Rubinton",
"email": "brian.rubinton@stardog.com"
}
],
"dependencies": {
"chevrotain": "4.7.0",
"escape-string-regexp": "^2.0.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^9.6.6",
"chalk": "^2.4.1",
"del": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.5",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^8.1.0",
"memoize-one": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"terser-webpack-plugin": "^1.1.0",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.1",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"typedoc": "^0.13.0",
"typescript": "^3.2.4",
"watch": "^1.0.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"precommit": "lint-staged",
"lint": "tslint --project tsconfig.json",
"test": "yarn lint && jest",
"pack": "webpack",
"build": "rimraf ./dist && run-s test pack types",
"dev": "webpack -w",
"format": "prettier 'src/**/*.[tj]s' -- write",
"docs": "rimraf ./docs && typedoc --exclude '__tests__/**/*' --target ES5 --mode file --out ./docs ./src",
"types": "tsc --emitDeclarationOnly"
},
"lint-staged": {
"linters": {
"src/**/*.[tj]s": [
"prettier --write",
"git add"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/stardog-union/millan.git"
},
"bugs": {
"url": "https://github.com/stardog-union/millan/issues"
},
"homepage": "https://github.com/stardog-union/millan#readme"
}