-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 751 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 751 Bytes
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
{
"name": "@sstur/js2php",
"version": "0.3.1",
"main": "js2php.js",
"bin": {
"js2php": "./js2php.js"
},
"scripts": {
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\"",
"test:unit": "node js2php --test",
"test": "npm run format:check && npm run test:unit"
},
"dependencies": {
"escope": "^1.0.1",
"rocambole": "^0.7.0",
"yargs": "^1.3.2"
},
"devDependencies": {
"prettier": "^2.4.1"
},
"repository": "github:sstur/js2php",
"keywords": [
"js",
"php",
"esprima",
"source",
"transform"
],
"license": "ISC",
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
},
"private": false
}