forked from MarshallOfSound/flora-colossus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 850 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
{
"name": "flora-colossus",
"version": "1.0.1",
"description": "Walks your node_modules tree",
"author": "Samuel Attard",
"license": "MIT",
"keywords": [
"node_modules",
"walker"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"pretest": "cd test/fixtures/xml2js && yarn --frozen-lockfile",
"test": "mocha --require ts-node/register test/*_spec.ts"
},
"dependencies": {
"debug": "^4.1.1",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.1",
"chai": "^4.2.0",
"mocha": "^7.0.1",
"sane": "^4.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.2.2"
},
"engines": {
"node": ">= 10.0.0"
}
}