-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "@acryl/js-test-env",
"version": "0.7.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"buildDocs": "node ./scripts/buildDocs.js",
"compileAugment": "tsc src/augment.ts --esModuleInterop --declaration --outDir dist",
"copyFiles": "cp src/index.d.ts dist/index.d.ts && cp src/index.js dist/index.js && cp README.md dist",
"copyPackageJson": "node ./scripts/copyPackageJson",
"build": "npm run compileAugment && npm run copyFiles && npm run copyPackageJson",
"prepublishOnly": "node ./scripts/checkFolder"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acrylplatform/js-test-env.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/acrylplatform/js-test-env/issues"
},
"homepage": "https://github.com/acrylplatform/js-test-env#readme",
"dependencies": {
"@acryl/ride-js": "^1.0.1",
"@acryl/acryl-transactions": "^3.16.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/node": "^12.0.8",
"tslint": "^5.17.0",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.5.1"
}
}