-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.16 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
{
"name": "unlaunch-js-client-lib",
"version": "0.0.8",
"description": "Unlaunch browser javaScript library",
"author": "Unlaunch <unlaunch@gmail.com>",
"license": "Apache-2.0",
"keywords": [
"unlaunch",
"feature flags",
"javascript"
],
"files": [
"dist/ulclient.cjs.js",
"dist/ulclient.cjs.js.map",
"dist/ulclient.es.js",
"dist/ulclient.es.js.map",
"dist/ulclient.min.js",
"dist/ulclient.min.js.map"
],
"types": "./typings.d.ts",
"main": "dist/ulclient.cjs.js",
"module": "dist/ulclient.es.js",
"unpkg": "dist/ulclient.min.js",
"jsdelivr": "dist/ulclient.min.js",
"scripts": {
"lint": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path ./.eslintignore",
"lint:all": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path ./.eslintignore src",
"format": "npm run format:md && npm run format:js",
"format:md": "prettier --parser markdown --ignore-path ../../.prettierignore --write '*.md'",
"format:js": "prettier --ignore-path ../../.prettierignore --write 'src/**/*.js'",
"format:test": "npm run format:test:md && npm run format:test:js",
"format:test:md": "prettier --parser markdown --ignore-path ../../.prettierignore --list-different '*.md'",
"format:test:js": "prettier --ignore-path ../../.prettierignore --list-different 'src/**/*.js'",
"build": "cross-env NODE_ENV=development rollup -c rollup.config.js",
"build:min": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"test": "cross-env NODE_ENV=test jest",
"test:junit": "cross-env NODE_ENV=test jest --testResultsProcessor jest-junit",
"check-typescript": "node_modules/typescript/bin/tsc",
"clean": "rimraf dist/**",
"prepublishOnly": "npm run build:min"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-regenerator": "7.10.4",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-xo": "^0.20.1",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"jest-localstorage-mock": "^2.4.3",
"jsdom": "^11.12.0",
"prettier": "1.11.1",
"readline-sync": "1.4.9",
"rimraf": "^3.0.2",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^6.0.4",
"semver": "^7.1.3",
"semver-compare": "^1.0.0",
"sinon": "7.2.7",
"typescript": "^3.7.5"
},
"dependencies": {
"escape-string-regexp": "^1.0.5",
"unlaunch-js-client-common": "~0.0.5"
},
"repository": {
"type": "git",
"url": "git://github.com/unlaunch/javascript-sdk.git"
}
}