-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "peach-lang",
"version": "0.4.1",
"description": "A tiny functional language",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepublish": "npm run dist",
"lint": "tslint src/**/*.ts",
"dist": "mkdir -p dist && cp -r src/peach.pegjs src/__tests__/fixtures dist && tsc && chmod u+x ./dist/bin/peach.js",
"clean": "rm -rf dist"
},
"bin": {
"peach": "./dist/bin/peach.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joews/peach.git"
},
"keywords": [
"peach",
"language",
"lisp"
],
"author": "Joe Whitfield-Seed <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joews/peach/issues"
},
"homepage": "https://github.com/joews/peach#readme",
"dependencies": {
"minimist": "^1.2.0",
"pegjs": "^0.10.0"
},
"devDependencies": {
"@types/jest": "^18.1.1",
"@types/minimist": "^1.2.0",
"@types/node": "^7.0.5",
"@types/pegjs": "^0.10.0",
"jest": "^19.0.2",
"tslint": "^4.5.1",
"tslint-config-standard": "^4.0.0",
"typescript": "^2.2.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/src/__tests__/preprocessor.js"
},
"testMatch": [
"**/__tests__/*tests.ts"
]
}
}