-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.52 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
54
55
56
57
58
59
60
61
{
"name": "@learninglocker/xapi-validation",
"version": "0.0.0-development",
"description": "Validation library for the xAPI.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LearningLocker/xapi-validation.git"
},
"files": [
"dist",
".env.example",
"package-lock.json"
],
"scripts": {
"acp": "git add -A && npm run commit && git push",
"commit": "git-cz",
"build": "tsc",
"test": "mocha dist/**/*.test.js --exit",
"cover": "nyc --lines 100 --check-coverage npm run test",
"clean": "rimraf dist",
"lint": "tslint --project ./tsconfig.json -c ./tslint.json",
"duplication": "jscpd --limit 1.0",
"semantic-release": "ht2-release-public-circleci-lib"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">16.0.0",
"npm": ">8.0.0"
},
"dependencies": {
"lodash": "^4.17.10",
"rulr": "^4.0.1"
},
"devDependencies": {
"@ht2-labs/semantic-release": "2.0.98",
"@types/lodash": "4.14.178",
"@types/mocha": "2.2.48",
"@types/node": "9.6.61",
"@types/source-map-support": "0.5.4",
"assert": "1.5.0",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"jscpd": "0.6.25",
"mocha": "4.1.0",
"nyc": "11.9.0",
"rimraf": "2.7.1",
"source-map-support": "0.5.21",
"tslint": "5.20.1",
"typescript": "3.9.10"
},
"publishConfig": {
"access": "public"
}
}