-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "decentraland-commons",
"version": "0.0.0-development",
"description": "Set of common functionality accross Decentraland projects.",
"typings": "./dist/index.d.ts",
"main": "./dist/index.js",
"browser": {
"./dist/index.js": "./dist/browser.js"
},
"scripts": {
"docs": "npx typedoc --out out src/index.ts",
"lint:fix": "tslint -p src/tsconfig.json --fix",
"lint": "tslint -p src/tsconfig.json",
"init": "mkdir -p dist",
"clean": "(rm -rf dist || true)",
"prebuild": "npm run clean && npm run init",
"build": "tsc -p src/tsconfig.json",
"pretest": "npm run build",
"test": "npm run build && tsc -p specs/tsconfig.json && mocha specs/**/*.spec.js",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/commons.git"
},
"files": [
"dist"
],
"keywords": [
"common",
"modules",
"decentraland"
],
"author": "Decentraland",
"license": "ISC",
"prettier": {
"printWidth": 80,
"singleQuote": true,
"semi": false
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.0",
"chai": "^4.1.2",
"dcl-tslint-config-standard": "^1.0.1",
"husky": "^0.14.3",
"mocha": "^4.0.1",
"prettier": "^1.8.2",
"semantic-release": "^12.2.5",
"tslint": "^5.9.1",
"tslint-language-service": "^0.9.8",
"typescript": "^3.9.2",
"validate-commit-msg": "^2.14.0"
}
}