-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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": "utils.random",
"version": "1.0.1",
"description": "Random all the things",
"main": "dist/index.js",
"files": [
"dist/index.js",
"dist/index.min.js"
],
"scripts": {
"build": "npm run build:browser && npm run build:node",
"build:browser": "rollup -c",
"build:node": "webpack --mode=production",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"release": "np",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zsoltime/random.git"
},
"keywords": [
"rand",
"random",
"randomize",
"int",
"float",
"array",
"number",
"pick"
],
"author": "Zsolt Meszaros",
"license": "MIT",
"bugs": {
"url": "https://github.com/zsoltime/random/issues"
},
"homepage": "https://github.com/zsoltime/random#readme",
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"jest": "^22.4.3",
"np": "^2.20.1",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^3.0.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}