-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "nicer-fs",
"version": "2.0.0",
"description": "Collection of helpful utillity functions when dealing with files in node",
"main": "dist/index.js",
"engines": {
"node" : ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:marvinhagemeister/nicer-fs.git"
},
"scripts": {
"test": "mocha --compilers ts:ts-node/register 'src/**/__tests__/*.spec.ts'",
"test-watch": "npm t -- -w",
"lint": "tslint 'src/**/*.ts'",
"build": "tsc",
"prepublishOnly": "npm run lint && npm t && npm run build"
},
"author": "Marvin Hagemeister <marvin@marvinhagemeister.de>",
"license": "MIT",
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"mocha": "^3.3.0",
"prettier": "^1.7.4",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"dependencies": {
"@types/glob": "^5.0.30",
"@types/ncp": "^2.0.0",
"@types/node": "^8.0.33",
"@types/rimraf": "^0.0.28",
"glob": "^7.1.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.1"
}
}