-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 873 Bytes
/
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
{
"name": "re-template-tag",
"version": "2.0.1",
"scripts": {
"build": "babel esm --out-dir cjs",
"prepublishOnly": "npm run build",
"test": "ava"
},
"author": "Axel Rauschmayer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rauschma/re-template-tag.git"
},
"//": [
"babel-cli: needed for building",
"babel-register: needed for testing via AVA"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"ava": "^0.21.0",
"babel-preset-env": "^1.5.1",
"babel-register": "^6.24.1"
},
"module": "./esm/index.js",
"main": "./cjs/index.js",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}