-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 KB
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
{
"name": "@startupdotdev/forever721",
"version": "1.0.4",
"description": "Analyze NFT metadata",
"main": "./dist/bundle.js",
"module": "./dist/bundle.es.js",
"types": "./src/global.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/startupdotdev/forever721.git"
},
"keywords": [
"nft"
],
"author": "@startupdotdev",
"license": "MIT",
"bugs": {
"url": "https://github.com/startupdotdev/forever721/issues"
},
"homepage": "https://github.com/startupdotdev/forever721#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.16",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rollup": "^2.70.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"buffer": "^6.0.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2"
}
}