-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "@128technology/ply",
"version": "1.0.0-alpha.7",
"description": "Manage model files that describe the GUI presentation of a Yinz data model.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register 'src/**/__tests__/*.ts'",
"lint": "tslint --project . src/**/*.ts src/**/*-test.ts",
"validate": "npm run lint && npm run test",
"clean": "rm -rf dist",
"init": "mkdir dist",
"prebuild": "npm run clean && npm run init",
"build": "tsc -d",
"example": "npm run build && node examples/index.js",
"prepublishOnly": "npm run build",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/128technology/ply.git"
},
"author": "128 Technology",
"license": "MIT",
"dependencies": {
"@128technology/yinz": "^5.0.0-alpha.6",
"@types/lodash": "^4.14.121",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/node": "^12.7.8",
"chai": "^3.5.0",
"libxmljs2": "^0.26.7",
"mocha": "^6.2.0",
"prettier": "^2.0.5",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
]
}