-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "deckstrings",
"version": "3.1.2",
"description": "Decode and encode Hearthstone Deckstrings",
"keywords": [
"hearthstone",
"deckstrings"
],
"homepage": "https://github.com/HearthSim/npm-deckstrings",
"bugs": {
"url": "https://github.com/HearthSim/npm-deckstrings/issues"
},
"license": "ISC",
"author": "Benedict Etzel <[email protected]>",
"main": "./dist/index",
"browser": "./dist/browser",
"types": "./types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/HearthSim/npm-deckstrings.git"
},
"scripts": {
"prepublishOnly": "rollup -c",
"build": "rollup -c",
"dev": "rollup -cw",
"test": "npm run build && npm run test:mocha; npm run test:karma",
"test:prepare": "npm run build",
"test:mocha": "mocha",
"test:karma": "karma start \"karma.conf.js\" --single-run",
"format": "prettier --write \"{src/**/*.ts,test/**/*.js,*.js,*.ts}\"",
"lint": "prettier --list-different \"{src/**/*.ts,test/**/*.js,*.js,*.ts}\"",
"type-check": "tsc"
},
"devDependencies": {
"@types/node": "^9.4.0",
"babel-core": "^6.26.0",
"chai": "^4.1.2",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^5.1.1",
"mocha": "^5.0.0",
"prettier": "^2.8.8",
"rollup": "^0.55.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-jscc": "^0.3.3",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^3.9.10",
"varint": "^5.0.0"
},
"dependencies": {},
"sideEffects": false,
"prettier": {
"useTabs": true,
"trailingComma": "es5"
}
}