-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "@drewxiu/utils",
"version": "1.0.47",
"description": "utils collection for myself",
"private": false,
"main": "src/index.ts",
"types": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"docs": "typedoc --out ./docs ./src/ && touch ./docs/.nojekyll",
"dist": "npm run lint && npm run docs && npm run build",
"build": "rollup -c",
"lint": "echo TODO",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noru/utils.git"
},
"keywords": [
"utils"
],
"author": "drew.xiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/noru/utils/issues"
},
"homepage": "https://github.com/noru/utils#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jquery": "^3.3.29",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.49",
"@types/sinon": "^7.0.12",
"chai": "^4.2.0",
"karma": "^6.3.14",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coveralls": "^2.1.0",
"karma-jquery": "^0.2.4",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-typescript": "^4.1.0",
"mocha": "^6.1.4",
"rollup": "^2.56.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^8.4.1",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^7.3.2",
"tslib": "^2.3.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
}
}