-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 869 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 869 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
{
"name": "@cable_ready/invoke_operations",
"version": "5.0.0",
"description": "CableReady Invoke Operations",
"repository": "https://github.com/cableready/invoke_operations",
"homepage": "https://cableready.stimulusreflex.com/",
"bugs": "https://github.com/cableready/invoke_operations/issues",
"license": "MIT",
"author": "Nathan Hopkins <natehop@gmail.com>",
"source": "./index.js",
"main": "./index.js",
"scripts": {
"lint": "yarn run prettier-standard:check",
"format": "yarn run prettier-standard:format",
"prettier-standard:check": "yarn run prettier-standard --check *.js **/*.js",
"prettier-standard:format": "yarn run prettier-standard *.js **/*.js"
},
"dependencies": {
"cable_ready": "^5.0.0"
},
"devDependencies": {
"prettier-standard": "^16.4.1"
},
"publishConfig": {
"access": "public"
}
}