-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 793 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 793 Bytes
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
{
"name": "@sevenview/total-resource",
"version": "0.1.4",
"description": "ORM to connect to an API",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "babel-node test/index.js",
"build": "babel src --out-dir lib",
"build:watch": "babel src --watch --out-dir lib"
},
"author": "Steve Clarke",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-transform-classes": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"nodemon": "^1.18.10",
"rimraf": "^2.6.3"
},
"dependencies": {
"inflection": "^1.12.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}