forked from StuckiSimon/HalCrawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "hal-crawler",
"version": "0.1.1",
"description": "Hal Client for JavaScript",
"main": "lib/index.js",
"typings": "src/hal-crawler.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d lib",
"test": "karma start karma.conf.js",
"lint": "eslint src/**.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StuckiSimon/HalCrawler.git"
},
"keywords": [
"hal"
],
"author": "Simon Stucki",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/StuckiSimon/HalCrawler/issues"
},
"homepage": "https://github.com/StuckiSimon/HalCrawler#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"eslint": "^3.17.1",
"jasmine-core": "^2.5.2",
"karma": "^1.4.1",
"karma-babel-preprocessor": "^6.0.1",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"watchify": "^3.9.0"
},
"dependencies": {
"babel-runtime": "^6.22.0",
"immutable": "^3.8.1",
"lodash.get": "^4.4.2",
"whatwg-fetch": "^2.0.2"
}
}