-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
83 lines (83 loc) · 2.15 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
{
"name": "type-reverse",
"version": "2.0.2",
"repository": "whizkydee/type-reverse",
"main": "build/index.js",
"description": "🦄 Lightweight reverse utility around strings, arrays, numbers and more.",
"author": {
"name": "Olaolu Olawuyi",
"email": "[email protected]",
"url": "https://twitter.com/mrolaolu"
},
"license": "MIT",
"homepage": "https://github.com/whizkydee/type-reverse#readme",
"scripts": {
"lint": "eslint src",
"test": "jest",
"build": "babel src --out-dir build && npm run minify && del-cli \"build/__tests__\"",
"start": "del-cli build && npm run lint && npm run build && npm test",
"minify": "uglifyjs build/util.js $npm_package_main -cm --source-map -o $npm_package_main",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"prepare": "npm run build"
},
"keywords": [
"🦄",
"array",
"arrays",
"string",
"strings",
"number",
"numbers",
"set",
"sets",
"reverse",
"invert",
"inversion",
"reversal",
"undo",
"inverse",
"opposite",
"integer",
"integers",
"change",
"swap",
"switch"
],
"files": [
"build"
],
"engines": {
"node": ">=4"
},
"jest": {
"testEnvironment": "node"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-minify-booleans",
"minify-dead-code-elimination",
"minify-flip-comparisons",
"minify-guarded-expressions",
"transform-merge-sibling-variables",
"minify-simplify"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-minify-dead-code-elimination": "^0.2.0",
"babel-plugin-minify-flip-comparisons": "^0.2.0",
"babel-plugin-minify-guarded-expressions": "^0.2.0",
"babel-plugin-minify-simplify": "^0.2.0",
"babel-plugin-transform-merge-sibling-variables": "^6.8.6",
"babel-plugin-transform-minify-booleans": "^6.8.3",
"babel-preset-env": "^1.6.1",
"del-cli": "^1.1.0",
"eslint": "^4.13.1",
"jest-cli": "^22.4.4",
"uglify-js": "^3.4.7"
}
}