-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "hexo-word-counter",
"version": "0.2.0",
"description": "Symbols count and time to read for articles.",
"main": "index",
"files": [
"src/**",
"Cargo.toml",
"lib",
"index.js",
"postinstall.js"
],
"scripts": {
"build": "cargo-cp-artifact --artifact cdylib word-counter index.node -- cargo build --message-format=json-render-diagnostics",
"build-release": "npm run build -- --release",
"lint": "eslint index.js lib/",
"postinstall": "node postinstall.js",
"test": "mocha test --reporter spec",
"test-cov": "c8 --print both _mocha -- test/index.js"
},
"repository": "next-theme/hexo-word-counter",
"keywords": [
"hexo",
"count",
"symbols",
"time-to-read"
],
"author": "Mimi <[email protected]> (https://zhangshuqiao.org)",
"license": "LGPL-3.0",
"dependencies": {
"cargo-cp-artifact": "^0.1"
},
"devDependencies": {
"@next-theme/eslint-config": "0.0.3",
"aws-sdk": "^2.1599.0",
"c8": "^9.1.0",
"chai": "4.4.1",
"eslint": "8.57.0",
"lorem-ipsum": "^2.0.8",
"mocha": "10.4.0"
}
}