-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.68 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
{
"name": "ima-plugin-rest-client",
"version": "0.6.0",
"description": "Generic REST API client plugin for the IMA application framework.",
"main": "AbstractRestClient.js",
"scripts": {
"prepublishOnly": "echo '====================================================================================================================================================\nUse \"npm run publish-package\" to publish this package.\n====================================================================================================================================================' && exit 1",
"publish-package": "npm run build && npm run test && npm publish dist --ignore-scripts",
"build": "node_modules/gulp/bin/gulp.js build",
"test": "node_modules/gulp/bin/gulp.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jurca/IMA-plugin-rest-client.git"
},
"keywords": [
"ima",
"ima.js",
"plugin",
"rest"
],
"author": "Martin Jurča <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jurca/IMA-plugin-rest-client/issues"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"homepage": "https://github.com/jurca/IMA-plugin-rest-client#readme",
"dependencies": {
"clone": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"del": "^2.2.2",
"eslint": "^3.15.0",
"gulp": "github:gulpjs/gulp#3f5aba2",
"gulp-babel": "^6.1.2",
"gulp-jasmine": "^2.4.2"
},
"engines": {
"node": ">=6",
"npm": ">=4 <6"
},
"browserify": {
"transform": [
"babelify"
]
}
}