-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 923 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
{
"name": "ursiform",
"version": "0.7.4",
"description": "Client library for the Ursiform API",
"homepage": "https://github.com/ursiform/ursiform-js",
"author": "A. Darian <[email protected]> (http://darian.af)",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ursiform/ursiform-js.git"
},
"keywords": [
"ursiform"
],
"scripts": {
"build": "npm run clean && tsc --project src && cd scripts && node agent",
"clean": "rimraf lib/*.js && rimraf lib/*.d.ts",
"postinstall": "npm dedupe",
"prepublish": "npm run build"
},
"files": [
"lib/*.d.ts",
"lib/*.js"
],
"license": "MIT",
"dependencies": {
"phosphor-signaling": "^1.2.0",
"superagent": "1.4.0"
},
"userAgent": "ursiform-js",
"devDependencies": {
"replace": "^0.3.0",
"rimraf": "^2.5.2",
"typescript": "^1.7.5"
}
}