-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 897 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
39
40
41
42
43
44
45
46
47
48
{
"name": "bomparse",
"version": "0.0.0",
"description": "A tool to parse BOM lists",
"author": "Anand Suresh",
"license": "MIT",
"bin": "bin/bomparse.js",
"main": "lib/parser.js",
"scripts": {
"clean": "rm -rf node_modules",
"clean-all": "rm -rf node_modules package-lock.json",
"lint": "standard",
"lint-fix": "standard --fix",
"test": "mocha spec"
},
"dependencies": {
"yargs": "15.3.1"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "7.1.1",
"standard": "14.3.3"
},
"mocha": {
"diff": true,
"extension": [
"js"
],
"package": "./package.json",
"reporter": "spec",
"slow": 75,
"timeout": 2000,
"ui": "bdd",
"watch-files": [
"lib/**/*.js",
"spec/**/*.js"
]
},
"standard": {
"ignore": [
"doc"
],
"globals": [
"describe",
"it"
]
}
}