-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "userflow.js",
"version": "2.12.1",
"description": "Async loader for userflow.js",
"homepage": "https://github.com/userflow/userflow.js",
"repository": {
"type": "git",
"url": "git://github.com/userflow/userflow.js.git"
},
"bugs": "https://github.com/userflow/userflow.js/issues",
"author": "Userflow <[email protected]> (https://userflow.com)",
"license": "MIT",
"private": false,
"main": "dist/userflow.umd.js",
"module": "dist/userflow.es.js",
"typings": "dist/types/userflow.d.ts",
"scripts": {
"build": "rm -rf dist/ && rollup -c rollup.config.js",
"prepublishOnly": "npm run test && npm run build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-es5": "^1.5.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.8.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"type-fest": "^0.20.2",
"typescript": "^4.1.3"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "\\.test\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}