-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 925 Bytes
/
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
{
"name": "pimento",
"version": "1.0.0",
"description": "",
"engine": {
"node": "14.18.0"
},
"scripts": {
"build": "./node_modules/.bin/browserify client/index.js -o static/js/bundle.js -v",
"dev": "./node_modules/.bin/watchify client/index.js -o static/js/bundle.js -v",
"test": "run-s test:*",
"test:mocha": "mocha client/**/test/*.js --timeout 90000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daiiz/pimento.git"
},
"author": "daiiz",
"license": "MIT",
"bugs": {
"url": "https://github.com/daiiz/pimento/issues"
},
"homepage": "https://github.com/daiiz/pimento#readme",
"private": true,
"devDependencies": {
"browserify": "^16.5.1",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"standard": "^14.3.4",
"watchify": "^4.0.0"
},
"dependencies": {
"@progfay/scrapbox-parser": "^4.0.3"
}
}