-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "runeux",
"version": "0.0.2",
"description": "Patch together js functions",
"main": "dist/index.js",
"author": "Code Mill",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "npx babel src --out-dir dist",
"build-test": "npx babel src --out-dir dist && yarn test",
"release-patch": "npm run build-test && npm version patch && npm publish"
},
"dependencies": {},
"devDependencies": {
"jest": "24.9.0",
"@babel/cli": "7.12.13",
"@babel/core": "7.12.13",
"@babel/preset-env": "7.12.13",
"babel-loader": "8.2.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianjonmiller/runeux.git"
},
"keywords": [
"trampoline",
"functional",
"js"
],
"bugs": {
"url": "https://github.com/adrianjonmiller/runeux/issues"
},
"homepage": "https://github.com/adrianjonmiller/runeux#readme"
}