-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "adf-builder",
"version": "3.3.0",
"description": "Atlassian Document Format Builder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:atlassian/adf-builder-javascript.git",
"author": "Patrick Streule <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha --require ts-node/register --check-leaks `find ./src -name '*.spec.ts' -print`",
"test:dist": "mocha --check-leaks `find ./dist -name '*.spec.js' -print`",
"test:coverage": "nyc yarn test",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "tslint --fix -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"ajv": "^4.11.8",
"axios": "^0.18.0",
"better-ajv-errors": "^0.5.1",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"ts-node": "^6.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
},
"nyc": {
"include": "src/**/*.ts",
"exclude": [
"src/**/_specs",
"src/_chai"
],
"extension": ".ts",
"require": "ts-node/register"
}
}