-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.53 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
44
45
46
47
48
49
50
51
{
"name": "babel-plugin-transform-currency-operators",
"version": "2.0.0",
"homepage": "An experimental babel plugin for transforming currency.js operators",
"description": "https://github.com/scurker/babel-plugin-transform-currency-operators",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"coverage": "BABEL_ENV=test nyc mocha --require @babel/register ./test/index.js",
"report:html": "nyc report --reporter=html",
"report:text-lcov": "nyc report --reporter=text-lcov",
"lint": "eslint .",
"prettier": "prettier --single-quote --trailing-comma es5 --write '{src/**/*.js,test/**/*.js}'",
"prepublish": "npm run build",
"test": "BABEL_ENV=test mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git://github.com/scurker/babel-plugin-transform-currency-operators.git"
},
"bugs": {
"url": "https://github.com/scurker/babel-plugin-transform-currency-operators/issues"
},
"files": [
"dist"
],
"keywords": [
"babel-plugin",
"currency.js",
"currency",
"money"
],
"author": "Jason Wilson <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@babel/core": "7.x"
},
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.13.16",
"@babel/preset-env": "7.13.15",
"@babel/register": "7.13.16",
"babel-plugin-tester": "^9.1.0",
"eslint": "^7.0.0",
"mocha": "9.2.2",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"rollup": "^2.10.7",
"rollup-plugin-babel": "^4.4.0"
}
}