This repository was archived by the owner on Mar 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 KB
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
51
52
53
54
55
56
57
{
"name": "coreapi",
"version": "0.1.1",
"description": "Javascript client library for Core API",
"main": "lib/index.js",
"scripts": {
"build": "mkdir -p dist && browserify --standalone coreapi -d -t babelify lib/index.js -o dist/coreapi.js",
"watch": "watchify --standalone coreapi -t babelify lib/index.js -o dist/coreapi.js -v",
"prepublish": "npm run build",
"jest": "jest",
"test": "standard && jest --coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:core-api/javascript-client.git"
},
"keywords": [
"API",
"REST",
"Hypermedia"
],
"author": "Tom Christie <tom@tomchristie.com> (https://twitter.com/_tomchristie)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/core-api/javascript-client/issues"
},
"standard": {
"globals": [
"describe",
"expect",
"it",
"xit",
"jest"
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/__helpers__/"
],
"testRegex": "/tests/.*\\.(ts|tsx|js)$"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"url-parse": "^1.1.7",
"url-template": "^2.0.8"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"jest": "^18.1.0",
"standard": "^8.6.0",
"watchify": "^3.8.0"
}
}