forked from skatejs/bore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "bore",
"description": "Enzyme-like testing for the DOM.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"types": "src/index.d.ts",
"author": "Trey Shugart <treshugart@gmail.com>",
"license": "MIT",
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"cz-conventional-changelog": "^1.2.0",
"jsdom": "^9.8.3",
"jsdom-global": "^2.1.0",
"semantic-release": "^6.3.2",
"skatejs-build": "^12.1.0",
"skatejs-web-components": "^5.0.0",
"tape": "^4.6.2",
"typescript": "^2.1.5",
"typescript-formatter": "^4.0.1"
},
"scripts": {
"test": "npm run test:ts",
"test:ts": "tsfmt -r && tsc -p ./",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"skatejs-dom-diff": "^0.4.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/skatejs/bore.git"
}
}