-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
{
"name": "findify-sdk",
"description": "Findify search api client",
"version": "1.3.9",
"author": "Findify <yourfriends@findify.io>",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.4.6",
"jsonp": "^0.2.1",
"lodash": "^4.17.2",
"qs": "^6.3.0"
},
"devDependencies": {
"@types/axios": "^0.9.34",
"@types/bluebird": "^3.0.36",
"@types/expect": "^1.13.31",
"@types/jsdom": "^2.0.29",
"@types/lodash": "4.14.30",
"@types/mocha": "^2.2.34",
"@types/qs": "^6.2.30",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"cpx": "^1.5.0",
"cross-env": "^3.1.4",
"expect": "^1.20.2",
"faux-jax": "^5.0.6",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"rewire": "^2.5.2",
"rimraf": "^2.5.4",
"ts-loader": "^1.3.3",
"ts-node": "^1.7.2",
"tslint": "^4.1.1",
"typescript": "^2.1.4",
"webpack": "^1.14.0",
"webpack-node-externals": "^1.5.4"
},
"files": [
"dist",
"lib",
"index.d.ts"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "tsc --project . && cpx './src/env/*.js' ./lib/env",
"build:umd": "cross-env NODE_ENV=development webpack src/index.ts dist/findify-sdk.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.ts dist/findify-sdk.min.js",
"check": "npm run test && npm run build && npm run lint && npm run clean",
"clean": "rimraf lib dist",
"lint": "tslint --project .",
"postpublish": "npm run clean",
"postversion": "git push && git push --tags && git checkout develop && git merge master && git push",
"prepublish": "npm run build",
"preversion": "npm run check && git checkout master && git merge develop",
"test": "cross-env mocha --compilers ts:ts-node/register --recursive -R min ./__tests__"
},
"tags": [
"client",
"search",
"findify",
"sdk"
]
}