-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 947 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
{
"name": "@intrinsic/loc",
"version": "1.0.1",
"description": "Compare the amount code in your application vs. in its `node_modules` folder",
"repository": "https://github.com/IntrinsicLabs/loc",
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"dependencies": {
"cloc": "2.3.2"
},
"bin": {
"intrinsic-loc": "./bin/loc"
},
"scripts": {
"preinstall": "node ./scripts/preinstall.js",
"prepublishOnly": "npm run test",
"test": "node ./test/report.js && node ./test/dependency-scanner.js && node ./test/helpers.js && node ./test/helpers-tty.js && node ./test/loc-output.js && npm run lint && npm run tc",
"lint": "eslint --ignore-path .gitignore .",
"tc": "flow"
},
"author": {
"name": "Intrinsic",
"email": "[email protected]",
"url": "https://intrinsic.com"
},
"license": "GPL-3.0-only",
"devDependencies": {
"eslint": "4.19.1",
"flow-bin": "0.72.0"
}
}