-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "pconvert-rust",
"version": "0.5.1",
"description": "Rust version of P(NG)Convert, a simple PNG conversion tool.",
"keywords": [
"pconvert",
"rust",
"fast"
],
"homepage": "https://github.com/ripe-tech/pconvert-rust",
"repository": {
"type": "git",
"url": "git+https://github.com/ripe-tech/pconvert-rust.git"
},
"license": "Apache-2.0",
"author": "Platforme",
"files": [
"pconvert_rust/test/**/*.js"
],
"scripts": {
"build": "wasm-pack build --release --target=nodejs -- --features wasm-extension",
"lint": "eslint \"pconvert_rust/test/**/*.js\"",
"lint-fix": "eslint \"pconvert_rust/test/**/*.js\" --fix",
"prettier": "prettier \"./**/*.{js,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"test": "npm run build && mocha pconvert_rust/test/ --recursive",
"upgrade": "npx sort-package-json && ncu -u"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-hive": "^0.5.3",
"mocha": "^8.2.1",
"npm-check-updates": "^12.5.0",
"prettier": "^2.5.1",
"prettier-config-hive": "^0.1.7"
},
"engines": {
"node": ">=11"
},
"engineStrict": true
}