-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1 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
{
"name": "poml-root",
"version": "1.0.0",
"description": "Positional Markup Language - Simple markup for describing the position of components within a string.",
"main": "dist/index.js",
"author": "[email protected]",
"license": "MIT",
"private": false,
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc -d",
"build:watch": "yarn build -w",
"test": "ava"
},
"devDependencies": {
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/uuid": "^8.3.0",
"ava": "^3.15.0",
"pretty-quick": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"ava": {
"extensions": [
"js"
],
"files": [
"./dist/*.test.js",
"./dist/**/*.test.js"
]
},
"files": [
"./dist"
],
"dependencies": {
"uuid": "^8.3.2"
}
}