forked from tulios/mappersmith
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mappersmith",
"version": "2.26.0",
"description": "It is a lightweight rest client for node.js and the browser",
"author": "Tulio Ornelas <[email protected]>",
"contributors": [
"Daniel Alves <[email protected]>",
"Roberto Soares <[email protected]>",
"Mathias Klippinge <[email protected]>"
],
"main": "index.js",
"scripts": {
"integration-server": "node spec/integration/server.js",
"test:browser": "./node_modules/.bin/jest --config jestSetup/configs/config.web.json",
"test:browser:integration": "cross-env NODE_ENV=test ./node_modules/.bin/karma start spec/integration/browser/karma.conf.js",
"test:browser:watch": "./node_modules/.bin/jest --config jestSetup/configs/config.web.json --watchAll",
"test:node": "./node_modules/.bin/jest --config jestSetup/configs/config.node.json",
"test:node:integration": "cross-env NODE_ENV=test cross-env NODE_PATH=. cross-env JASMINE_CONFIG_PATH=spec/integration/node/support/jasmine.json jasmine",
"test:node:watch": "./node_modules/.bin/jest --config jestSetup/configs/config.node.json --watchAll",
"test": "concurrently --success first --names \"test,server\" --kill-others \"node scripts/ci.js\" \"yarn integration-server\"",
"build:node": "rm -rf lib/* && ./node_modules/.bin/babel src -d lib",
"build:browser": "rm -rf dist/* && ./node_modules/.bin/webpack --config webpack.conf.js",
"build": "npm run build:node && npm run build:browser",
"release": "./scripts/release.sh",
"lint": "./node_modules/.bin/eslint \"{src,spec}/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/tulios/mappersmith.git"
},
"keywords": [
"rest",
"client",
"rest-client",
"isomorphic",
"browser",
"server",
"data-mapper",
"mappersmith"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tulios/mappersmith/issues"
},
"homepage": "https://github.com/tulios/mappersmith",
"tonicExampleFilename": "example.js",
"browser": {
"./lib/gateway/http.js": false,
"./src/gateway/http.js": false,
"./gateway/http.js": false
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.5",
"babel-plugin-minify-replace": "^0.4.3",
"body-parser": "^1.15.2",
"concurrently": "^3.5.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.15.4",
"faux-jax-tulios": "^5.0.8",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"jest": "^23.5.0",
"js-md5": "^0.6.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"mockdate": "^2.0.1",
"multer": "^1.2.0",
"puppeteer": "^0.12.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.11",
"whatwg-fetch": "^2.0.2"
}
}