-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
{
"name": "morpheos",
"version": "2.3.1",
"description": "Use eosjs 1 or 2 indistinctly.",
"author": "GetScatter Ltd.",
"repository": {
"type": "git",
"url": "https://github.com/GetScatter/morpheos.git"
},
"license": "MIT",
"keywords": [
"eosio",
"eosjs",
"compatibility"
],
"files": [
"/dist"
],
"main": "dist/index.js",
"scripts": {
"clean:deps": "rimraf node_modules",
"clean:dist": "rimraf dist",
"clean": "npm run clean:dist && npm run clean:deps",
"build": "npm run clean:dist && tsc -p tsconfig.build.json",
"watch": "npm run clean:dist && tsc -p tsconfig.build.json --watch",
"lint": "tslint --project tsconfig.json --config tslint.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"test": "mocha -r ts-node/register \"test/*.spec.ts\"",
"prepare": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"big-integer": "^1.6.44"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^2.5.0",
"@pollyjs/core": "^2.5.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.1",
"@types/pollyjs__core": "^2.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eosjs": "^20.0.0",
"eosjs-legacy": "npm:[email protected]",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"mocha-typescript": "^1.1.17",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
}
}