-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "pine",
"version": "0.0.1",
"description": "A general purpose, type checked language inspired by Rust.",
"main": "dist/index.js",
"bin": {
"pine": "dist/index.js"
},
"preferGlobal": true,
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.12",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"scripts": {
"clean": "rimraf ./dist",
"compile": "tsc -p .",
"build": "npm run clean && npm run compile",
"lint": "tslint -p .",
"test": "mocha -r ts-node/register test/*/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomas-crane/pine.git"
},
"keywords": [
"programming-language",
"compiler",
"typescript",
"compile-to-js"
],
"author": "tcrane",
"license": "MIT",
"bugs": {
"url": "https://github.com/thomas-crane/pine/issues"
},
"homepage": "https://github.com/thomas-crane/pine#readme"
}