-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "unlaunch-js-client-common",
"version": "0.0.5",
"description": "Unlaunch JavaScript client- common code",
"author": "Unlaunch <unlaunch@gmail.com>",
"license": "Apache-2.0",
"files": [
"ulclient-common.cjs.js",
"ulclient-common.cjs.js.map",
"ulclient-common.es.js",
"ulclient-common.es.js.map",
"ulclient-common.min.js",
"ulclient-common.min.js.map",
"typings.d.ts"
],
"types": "./typings.d.ts",
"main": "dist/ulclient-common.cjs.js",
"module": "dist/ulclient-common.es.js",
"unpkg": "dist/ulclient-common.min.js",
"jsdelivr": "dist/ulclient-common.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.8.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "7.6.3",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"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": "^25.5.4",
"jsdom": "^11.11.0",
"prettier": "1.11.1",
"readline-sync": "^1.4.9",
"rimraf": "^2.6.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-terser": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"semver": "^5.5.0",
"semver-compare": "^1.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"base64-js": "^1.3.0",
"fast-deep-equal": "^2.0.1",
"uuid": "^3.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/unlaunch/javascript-sdk-common.git"
}
}