-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 919 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 919 Bytes
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
{
"name": "jsprolog",
"version": "0.2.2",
"description": "A simple Prolog interpreter written with javascript (ECMAScript5).",
"keywords": [
"prolog"
],
"homepage": "https://github.com/sleepyowl/jsprolog",
"bugs": "https://github.com/sleepyowl/jsprolog/issues",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/jsprolog.js",
"typings": "dist/jsprolog.d.ts",
"author": {
"name": "Dmitry Soloviev",
"email": "dmitry.soloviev@outlook.com"
},
"repository": {
"type": "git",
"url": "https://github.com/sleepyowl/jsprolog.git"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"tslint": "^3.6.0",
"typescript": "^2.0.0"
},
"scripts": {
"prepublish": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/tsc && mocha ./dist/*Spec.js"
}
}