-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "extensions.macro",
"version": "1.0.1",
"description": "Extension functions and parameters for JavaScript inspired by Kotlin's extensions",
"main": "lib/index.macro.js",
"files": [
"lib"
],
"scripts": {
"test": "ava",
"build:test": "babel pre-tests --out-dir tests",
"re-test": "npm run build:test && npm test",
"build": "babel src --out-dir lib && npm run build:test",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fkrasnowski/extensions.macro.git"
},
"author": "fkrasnowski",
"license": "MIT",
"bugs": {
"url": "https://github.com/fkrasnowski/extensions.macro/issues"
},
"homepage": "https://github.com/fkrasnowski/extensions.macro#readme",
"keywords": [
"babel",
"babel-macros",
"extension-methods",
"extension-functions",
"parameters"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-throw-expressions": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-plugin-macros": "^2.8.0",
"ava": "^3.8.2",
"rimraf": "^3.0.2"
}
}