-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "apl-suggester",
"version": "2024.2.0",
"description": "This Package is developed for providing suggestions and validations on APL templates.",
"engines": {
"node": ">=12.0.0"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/alexa/apl-suggester/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/alexa/apl-suggester"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"compile": "tsc",
"unittest-watch": "mocha --watch src/**/__tests__/*.spec.{ts,tsx} --watch-extensions ts,tsx --config ./.mocharc.json",
"unittest": "mocha --config ./.mocharc.json 'src/**/__tests__/*.spec.{ts,tsx}'",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"test": "nyc npm run unittest",
"test-watch": "nyc npm run unittest-watch",
"cleanup": "rm -rf dist",
"start": "npm run lint && npm run test && npm run cleanup && npm run compile",
"start-test": "npm run start && webpack --watch",
"release": "npm run start",
"watch": "tsc --watch",
"prepublishOnly": "npm run release"
},
"files": [
"dist/**"
],
"nyc": {
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"extension": [
".ts"
],
"exclude": [
"dist/tst",
"tst",
"src/**/__tests__/**/*"
]
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"awesome-typescript-loader": "5.x",
"axios-mock-adapter": "1.16.0",
"chai": "^3.5.0",
"istanbul": "^0.4.x",
"jsdom": "^16.5.0",
"lint-staged": "^10.0.8",
"mocha": "^8.0.1",
"nyc": ">14.0.0",
"sinon": "^2.2.x",
"tslint": "^5.1.x",
"webpack": "^4.39.3"
},
"dependencies": {
"@types/chai": "3.5.x",
"@types/core-js": "2.5.x",
"@types/node": "12.0.x",
"@types/sinon": "2.2.x",
"ajv": "^7.2.4",
"axios": "1.6.0",
"immutable": "4.1.0",
"jsdom-global": "3.0.x",
"ts-node": "3.3.x",
"typescript": "^4.9.4"
}
}