-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 954 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
39
40
{
"name": "@doubledutch/admin-client",
"version": "2.2.3",
"description": "A client library for interacting with the DoubleDutch CMS",
"main": "lib/index.js",
"scripts": {
"compile": "rimraf lib/* && babel src --out-dir lib",
"prepare": "npm run compile",
"test": "jest"
},
"bin": {
"doubledutch-admin-emulator": "emulator.js"
},
"keywords": [
"doubledutch",
"admin",
"client"
],
"repository": {
"type": "git",
"url": "git://github.com/doubledutch/admin-client.git"
},
"author": "DoubleDutch",
"contributors": [
"Adam Liechty <adam@doubledutch.me>"
],
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"jest": "^24.8.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@babel/runtime": "^7.4.5"
}
}