-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "@hyperjumptech/js-urai",
"version": "0.0.2",
"description": "Reformat minified JavaScript code",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"test": "npm run unit-tests && npm run check-format",
"unit-tests": "mocha tests/",
"check-format": "prettier --check \"**/*.js\"",
"format-code": "prettier --write \"**/*.js\"",
"dodol": "./index.js lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjumptech/js-urai.git"
},
"files": [
"lib/index.js",
"index.js",
"README.md",
"LICENSE"
],
"author": "Ariya Hidayat <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperjumptech/js-urai/issues"
},
"homepage": "https://github.com/hyperjumptech/js-urai#readme",
"dependencies": {
"astring": "~1.4.3",
"esprima": "~4.0.1",
"glob": "~7.1.6"
},
"devDependencies": {
"mocha": "~7.1.1",
"prettier": "~1.19.1"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}