-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "babel-plugin-annotate-pure-calls",
"version": "0.4.0",
"description": "Babel plugin for annotating automatically pure function calls.",
"author": "Mateusz Burzyński <[email protected]> (https://github.com/Andarist)",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"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",
"dependencies": {},
"peerDependencies": {
"@babel/core": "^6.0.0-0 || 7.x"
},
"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",
"babel-core": "^6.26.3",
"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": "babel src --out-dir lib",
"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"
}
}