-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
79 lines (79 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "generator-starknet",
"version": "0.1.6",
"description": "This is a development platform to quickly generate, develop, & deploy smart contract based apps on StarkNet.",
"homepage": "https://github.com/onlydustxyz/generator-starknet",
"author": {
"name": "Abdelhamid Bakhta",
"email": "[email protected]",
"url": "https://twitter.com/dimahledba"
},
"files": ["generators"],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"starknet",
"starkware",
"cairo",
"nft",
"token",
"erc20",
"smart-contract"
],
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-config-xo": "^0.27.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^26.1.0",
"lint-staged": "^9.4.3",
"prettier": "^2.6.2",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"dependencies": {
"@openzeppelin/wizard-cairo": "^0.2.0",
"chalk": "^2.1.0",
"ejs": ">=3.1.7",
"glob-parent": ">=5.1.2",
"yeoman-generator": "^3.1.1",
"yosay": "^2.0.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": ["<rootDir>/generators/**"],
"coveragePathIgnorePatterns": ["<rootDir>/generators/app/templates"]
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": ["prettier"]
},
"scripts": {
"pretest": "eslint .",
"test": "jest",
"prettier": "prettier --write ."
},
"repository": "https://github.com/onlydustxyz/generator-starknet.git",
"license": "MIT"
}