forked from ethereum/solidity-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "solidity-examples",
"version": "0.1.0",
"description": "Standard contracts",
"bin": {
"solstl": "./bin/main.js"
},
"scripts": {
"test": "jest && node ./bin/main.js tests --silent",
"ts-lint": "tslint -p .",
"ts-test": "jest",
"contracts-lint": "solhint **/*.sol",
"contracts-compile": "node ./bin/main.js compile",
"contracts-test": "node ./bin/main.js tests",
"contracts-perf": "node ./bin/main.js perf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/solidity-examples.git"
},
"author": "Andreas Olofsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/solidity-examples/issues"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"homepage": "https://github.com/ethereum/solidity-examples#readme",
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/jest-matchers": "^20.0.0",
"@types/mkdirp": "^0.5.1",
"@types/node": "^8.0.47",
"jest": "^21.2.1",
"solhint": "^1.1.7",
"ts-jest": "^21.1.4",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"chalk": "^2.3.0",
"inquirer": "^3.3.0",
"jsondiffpatch": "^0.2.5",
"mkdirp": "^0.5.1"
}
}