-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 930 Bytes
/
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
{
"name": "d365-ui-mocha-test",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "mocha -r ts-node/register tests/**/*.test.ts --timeout 999999"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^7.0.2",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"d365-ui-test": "^0.1.8",
"mocha": "7.1.1",
"nodemon": "^2.0.2",
"rollup": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-node": "^8.8.1"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"typescript": "^3.9.2"
}
}