-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "babel-plugin-annotate-pure-calls",
"version": "0.5.0",
"description": "Babel plugin for annotating automatically pure function calls.",
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"engines": {
"node": ">=18"
},
"main": "dist/babel-plugin-annotate-pure-calls.cjs.js",
"module": "dist/babel-plugin-annotate-pure-calls.esm.js",
"exports": {
".": {
"types": {
"import": "./dist/babel-plugin-annotate-pure-calls.cjs.mjs",
"default": "./dist/babel-plugin-annotate-pure-calls.cjs.js"
},
"module": "./dist/babel-plugin-annotate-pure-calls.esm.js",
"import": "./dist/babel-plugin-annotate-pure-calls.cjs.mjs",
"default": "./dist/babel-plugin-annotate-pure-calls.cjs.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Andarist/babel-plugin-annotate-pure-calls.git"
},
"keywords": [
"babel",
"plugin",
"pure",
"side-effects",
"uglifyjs"
],
"bugs": {
"url": "https://github.com/Andarist/babel-plugin-annotate-pure-calls/issues"
},
"homepage": "https://github.com/Andarist/babel-plugin-annotate-pure-calls#readme",
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@preconstruct/cli": "^2.8.10",
"babel-plugin-tester": "^5.4.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.5"
},
"scripts": {
"build": "preconstruct build",
"pretest": "npm run build",
"test": "jest",
"precommit": "lint-staged",
"prepare": "npm run build",
"prepublish": "test $(npm -v | tr . '\\n' | head -n 1) -ge '4' || exit 1",
"preversion": "npm test",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:major": "npm version major && npm publish && git push --follow-tags"
},
"prettier": {
"lineWidth": 120,
"singleQuote": true,
"semi": false,
"trailingComma": "all",
"proseWrap": "always"
},
"preconstruct": {
"exports": {
"importConditionDefaultExport": "default"
},
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
}
}