-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.28 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
{
"version": "0.1.0",
"description": "An advanced text layout framework",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "lerna run build",
"build:watch": "lerna run build:watch --concurrency=1000 --stream",
"precommit": "lint-staged",
"test": "jest"
},
"files": [
"dist"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"pdfkit": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.14.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lerna": "^2.8.0",
"lint-staged": "^7.0.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}