This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.22 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
{
"name": "findify-analytics",
"version": "2.0.14",
"main": "lib/index.js",
"tags": [
"findify",
"analytics",
"search"
],
"scripts": {
"clean": "rimraf ./lib ./dist",
"lint": "tslint --project .",
"check": "npm run test && npm run build && npm run clean",
"test": "mocha --compilers ts:ts-node/register --recursive -R min ./__tests__",
"build:commonjs": "tsc --project . && cpx './src/env/*.js' ./lib/env",
"build:umd": "cross-env FINDIFY_ENV=production NODE_ENV=development webpack src/index.ts dist/prod/findify-analytics.js",
"build:umd:min": "cross-env FINDIFY_ENV=production NODE_ENV=production webpack src/index.ts dist/prod/findify-analytics.min.js",
"build:umd-staging": "cross-env FINDIFY_ENV=staging NODE_ENV=development webpack src/index.ts dist/staging/findify-analytics.js",
"build:umd:min-staging": "cross-env FINDIFY_ENV=staging NODE_ENV=production webpack src/index.ts dist/staging/findify-analytics.min.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build-staging": "npm run build:umd-staging && npm run build:umd:min-staging",
"preversion": "git checkout master && git merge develop",
"postversion": "git push && git push --tags && git checkout develop && git merge master && git push"
},
"author": "Findify <yourfriends@findify.io>",
"license": "MIT",
"files": [
"lib",
"index.d.ts"
],
"repository": "https://github.com/findify/analytics-js.git",
"dependencies": {
"change-emitter": "^0.1.6",
"humps": "^2.0.1",
"js-cookie": "^2.1.4",
"lodash": "^4.17.4",
"qs": "^6.5.1",
"store": "^2.0.12"
},
"devDependencies": {
"@types/es6-shim": "^0.31.35",
"@types/expect": "^1.20.2",
"@types/js-cookie": "^2.1.0",
"@types/lodash": "4.14.74",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"@types/qs": "^6.5.0",
"canvas": "^1.6.7",
"cpx": "^1.5.0",
"cross-env": "^5.0.5",
"expect": "1.20.2",
"faux-jax": "^5.0.6",
"jsdom": "9.12.0",
"mocha": "^3.5.3",
"rewire": "^2.5.2",
"rimraf": "^2.6.2",
"ts-loader": "^2.3.7",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"webpack": "^3.5.6"
}
}