-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
45
46
47
48
49
50
51
52
53
{
"name": "@concat/license-decoder",
"version": "2.0.0",
"description": "Decoder US and Canada license strings.",
"main": "dist/licenseDecoder.js",
"typings": "dist/licenseDecoder.d.ts",
"scripts": {
"test": "mocha -R dot --exit -r ts-node/register/transpile-only \"src/**/*.test.ts\"",
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"lint": "tslint -t verbose -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/conventioncat/license-decode.git"
},
"keywords": [
"License",
"USA",
"Canada"
],
"author": "Simon Schick <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://gitlab.com/conventioncat/license-decode/issues"
},
"homepage": "https://gitlab.com/conventioncat/license-decode#readme",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.concat.app"
},
"devDependencies": {
"@concat/config": "^0.3.4",
"@types/chai": "^4.2.3",
"@types/faker": "^4.1.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.12",
"chai": "^4.2.0",
"faker": "^4.1.0",
"mocha": "^6.2.1",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}