-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 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
{
"name": "dribbblejs",
"version": "0.0.20",
"author": "Stefan Mansson <stefan.aotik@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"umd": "dist/index.umd.js",
"module": "dist/index.m.js",
"scripts": {
"release": "changelog && git push --follow-tags && yarn publish --access public --non-interactive",
"build": "sh ./build.sh",
"bundle": "rollup -c",
"prepublishOnly": "yarn build",
"lint": "tslint -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"fetch-ponyfill": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.3",
"changelog.md": "^1.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-fetch-mock": "^3.0.1",
"lint-staged": "^10.0.7",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"tslint": "^5.16.0",
"typescript": "^3.8.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"index.d.ts",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/animify/dribbblejs.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "yarn run lint"
},
"jest": {
"automock": false,
"verbose": true,
"setupFiles": [
"./setupTests.js"
]
}
}