-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "@rojo2/create-random-function",
"version": "1.0.3",
"main": "dist/create-random-function.cjs.js",
"module": "dist/create-random-function.esm.js",
"browser": "dist/create-random-function.udm.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"test": "NODE_ENV=test mocha --require babel-core/register",
"test:watch": "NODE_ENV=test mocha --watch --require babel-core/register"
},
"files": [
"dist"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0"
},
"author": "ROJO 2 <hola@rojo2.com> (http://rojo2.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rojo2/create-random-function.git"
},
"keywords": [
"linear",
"congruential",
"generator",
"pseudo",
"random"
],
"bugs": {
"url": "https://github.com/rojo2/create-random-function/issues"
},
"homepage": "https://github.com/rojo2/create-random-function#readme",
"dependencies": {
"@rojo2/linear-congruential-generator": "^1.0.1"
}
}