-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "kevoree-registry-client",
"version": "1.0.0-alpha.10",
"description": "A library to communicate with a Kevoree registry REST API",
"main": "build/main/index.js",
"typings": "build/decl/index.d.ts",
"scripts": {
"test": "npm run mocha && npm run karma",
"mocha": "mocha build/test/spec",
"karma": "karma start",
"clean": "node bin/clean.js",
"prebuild-main": "tslint src/main/**/*.ts",
"build-main": "tsc -p src/main",
"prebuild-test": "tslint src/test/**/*.ts",
"build-test": "tsc -p src/test",
"build-src": "npm run build-main && npm run build-test",
"build": "npm run clean && npm run build-src && npm run webpack",
"build-prod": "npm run clean && npm run build-src && npm run webpack-prod",
"webpack": "webpack --progress",
"webpack-prod": "NODE_ENV=production webpack --progress -p"
},
"keywords": [
"kevoree",
"registry",
"client",
"rest",
"api"
],
"author": "Maxime Tricoire <[email protected]> (https://github.com/maxleiko)",
"repository": {
"type": "git",
"url": "https://github.com/kevoree/kevoree-js-registry-client"
},
"bugs": {
"url": "https://github.com/kevoree/kevoree-js-registry-client/issues"
},
"license": "LGPL-3.0",
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"chai": "^3.5.0",
"debug": "^2.6.7",
"eslint": "^3.19.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.1",
"rimraf": "^2.6.1",
"tslib": "^1.7.1",
"tslint": "^5.2.0",
"typescript": "^2.3.2",
"webpack": "^2",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"@types/node": "^7.0.18",
"@types/node-fetch": "^1.6.7",
"node-fetch": "^1.6.3",
"tiny-conf": "^1.0.5"
}
}