forked from pveyes/raw.macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "lqip.macro",
"description": "Cretes LQIP at build time, similar to webpack lqip-loader",
"version": "0.1.5",
"main": "dist/lqip.macro.js",
"license": "MIT",
"files": ["dist/"],
"keywords": [
"webpack",
"lqip-loader",
"lqip",
"string",
"babel",
"babel-macros",
"babel-plugin-macros"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stereobooster/lqip.macro.git"
},
"scripts": {
"test": "jest --coverage",
"format": "prettier --write",
"ci": "npm run test -- --ci && npm run build",
"prepare": "npm run build",
"build": "microbundle -i src/index.js -o dist && cp src/lqip.js dist/lqip.js",
"precommit": "lint-staged"
},
"dependencies": {
"babel-plugin-macros": "^2.2.1",
"lqip": "^2.0.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-tester": "^5.0.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.3.0",
"prettier": "^1.10.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"microbundle": "^0.4.3"
},
"jest": {
"testRegex": "__tests__/.*.test.js$"
},
"lint-staged": {
"*.{js,md}": ["prettier --write", "git add -A"]
}
}