-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "can-pass-js",
"version": "1.1.5",
"description": "Can Pass API SDK",
"files": [
"dist",
"lib"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist lib && rollup -c && tsc -p .",
"watch": "yarn run build -w",
"test": "jest",
"prepublish": "yarn build",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ext .ts --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint:fix",
"git add --force"
]
},
"repository": {
"type": "git",
"url": "https://github.com/canfoundation/can-pass-js"
},
"keywords": [
"can-pass"
],
"author": "lecle",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@rollup/plugin-commonjs": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-jest": "^24.9.0",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"flow-bin": "^0.113.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "^10.2.11",
"regenerator-runtime": "^0.13.5",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-dotenv": "^0.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-uglify": "^6.0.3",
"typescript": "^3.9.5"
},
"dependencies": {
"insert-css": "^2.0.0"
}
}