-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "walli-decorator",
"version": "1.0.1",
"main": "lib/index.js",
"description": "The semantic walli definition by decorator.",
"author": "imcuttle",
"scripts": {
"test": "jest",
"build": "rimraf lib && babel src/ -Dd lib",
"dev": "npm run build -- -w",
"doc": "documentation --github --markdown-toc=false readme src/index.js -a public -s \"API\"",
"prepublishOnly": "npm run doc && npm test"
},
"keywords": [
"walli-decorator"
],
"license": "MIT",
"repository": "imcuttle/walli-decorator",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@types/jest": "^23.3.1",
"babel-cli": "^6.26.0",
"babel-jest": "^23.4.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"decorate-properties": "^1.0.0",
"documentation": "^8.1.1",
"jest": "^23.5.0",
"rimraf": "^2.6.2",
"walli": "^1.1.3"
},
"peerDependencies": {
"walli": "^1.1.3"
}
}