-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "sprache",
"version": "1.2.2",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index",
"build": "tsc",
"clean": "rimraf dist documentation coverage",
"test": "jest",
"test:ci": "cross-env JEST_JUNIT_OUTPUT_DIR=test-results/jest jest --ci --collectCoverage --reporters=\"default\" --reporters=\"jest-junit\"",
"build:docs": "typedoc --out documentation src",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/luggage66/Sprache-js",
"bugs": {
"url": "https://github.com/luggage66/Sprache-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/luggage66/Sprache-js.git"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"cross-env": "^7.0.3",
"jest": "^27.0.5",
"jest-extended": "^0.11.1",
"jest-junit": "^12.2.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"source-map-support": "^0.5.12",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^6.1.3",
"typedoc": "^0.21.1",
"typescript": "^4.3.4"
},
"dependencies": {
"make-error": "^1.3.5"
}
}