This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
forked from optimizely/javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "@optimizely/optimizely-sdk",
"version": "4.0.0-alpha.1",
"description": "JavaScript SDK for Optimizely X Full Stack",
"main": "lib/index.node.js",
"browser": "lib/index.browser.js",
"react-native": "lib/index.react_native.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "mocha ./lib/*.tests.js ./lib/**/*.tests.js ./lib/**/**/*tests.js --recursive --exit --require lib/tests/exit_on_unhandled_rejection.js",
"test-xbrowser": "karma start karma.bs.conf.js --single-run",
"test-umdbrowser": "npm run build-browser-umd && karma start karma.umd.conf.js --single-run",
"build-browser-umd": "rm -rf dist && webpack",
"test-ci": "npm run test-xbrowser && npm run test-umdbrowser",
"lint": "eslint 'lib/**/*.js'",
"cover": "istanbul cover _mocha ./lib/*.tests.js ./lib/**/*.tests.js ./lib/**/**/*tests.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm run build-browser-umd && npm test && npm run test-xbrowser && npm run test-umdbrowser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimizely/javascript-sdk.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"optimizely"
],
"bugs": {
"url": "https://github.com/optimizely/javascript-sdk/issues"
},
"homepage": "https://github.com/optimizely/javascript-sdk/tree/master/packages/optimizely-sdk",
"dependencies": {
"@optimizely/js-sdk-datafile-manager": "^0.4.0",
"@optimizely/js-sdk-event-processor": "^0.4.0",
"@optimizely/js-sdk-logging": "^0.1.0",
"@optimizely/js-sdk-utils": "^0.2.0",
"json-schema": "^0.2.3",
"murmurhash": "0.0.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"bluebird": "^3.4.6",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^6.7.2",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.5.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^4.0.2",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^7.7.2",
"promise-polyfill": "8.1.0",
"sinon": "^2.3.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.1.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"lib/",
"LICENSE",
"CHANGELOG",
"README.md",
"package.json"
]
}