-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "@customink/signalerjs",
"version": "1.2.0",
"description": "JavaScript A/B testing feature flag library",
"main": "dist/signalerjs.min.js",
"scripts": {
"build": "webpack --mode production",
"lint": "npx eslint ./src ./test",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/customink/signalerjs.git"
},
"bugs": {
"url": "https://github.com/customink/signalerjs/issues"
},
"keywords": [
"testing",
"a/b testing",
"javascript",
"feature testing"
],
"author": "Custom Ink Technology",
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.0.0",
"@babel/eslint-plugin": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.2.3",
"es6-promise": "4.2.4",
"eslint": "^8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7",
"prettier": "2.5.1",
"webpack": "^5.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"blueimp-md5": "2.19.0",
"cookies-js": "1.2.3",
"samplejs": "0.2.0"
}
}