-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 997 Bytes
/
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
{
"name": "fftt",
"version": "0.0.1",
"description": "Functional File Tree Transforms.",
"main": "index.js",
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"test": "mocha --compilers ts:ts-node/register 'src/test/**/*.ts'",
"test-build": "mocha 'build/test/**/*.js'",
"tsc": "tsc",
"build": "tsc"
},
"bin": {
"fftt": "./build/fftt.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimiliano-mantione/fftt.git"
},
"author": "Massimiliano Mantione",
"license": "MIT",
"bugs": {
"url": "https://github.com/massimiliano-mantione/fftt/issues"
},
"homepage": "https://github.com/massimiliano-mantione/fftt#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "^3.5.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"tslint-config-standard": "^5.0.2",
"typescript": "^2.2.2"
}
}