-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 994 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
46
{
"name": "files.macro",
"version": "0.2.1",
"description": "Read files name from folder at build time",
"main": "dist/files.macro.js",
"scripts": {
"test": "jest",
"build": "microbundle -i index.js -o dist --name files",
"dev": "microbundle watch",
"preci": "npm run test -- --ci",
"ci": "npm run build"
},
"author": "ridermansb",
"license": "MIT",
"files": [
"dist/"
],
"keywords": [
"webpack",
"files-loader",
"files",
"string",
"babel",
"babel-macros",
"babel-plugin-macros"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ridermansb/files.macro.git"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-plugin-macros": "^2.5.0",
"babel-plugin-tester": "^8.0.0",
"jest": "^24.1.0",
"microbundle": "^0.11.0"
},
"engines": {
"node": ">=8.9.0"
},
"jest": {
"testRegex": ".*.test.js$"
}
}