-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "@w11k/ts-mixins",
"version": "0.1.0",
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/es2015/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/w11k/ts-mixins",
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "7.8.3"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"jest": "^25.1.0",
"del-cli": "3.0.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"babel-jest": "latest",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"babel-preset-es2015": "^6.24.1",
"np": "^6.0.0"
},
"peerDependencies": {},
"scripts": {
"np": "np",
"clean": "del-cli dist",
"build": "npm run clean ; tsc -p tsconfig.json && tsc -p tsconfig.dist.es2015.json",
"test": "jest src",
"test:watch": "jest src --watch"
},
"np": {
"yarn": false
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}