-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
44 lines (44 loc) · 1.57 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": "promjs",
"version": "0.4.2",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && yarn run build:js && yarn run build:types && webpack-cli -p && cp package.json README.md ./lib",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"lint": "eslint --ext .ts src test",
"test": "mocha --recursive \"test/**/*-test.ts\"",
"release": "yarn lint && yarn test && yarn version && yarn build && yarn push",
"push": "cd lib && npm login && npm publish && git push --set-upstream origin master --follow-tags"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.3",
"@typescript-eslint/eslint-plugin": "^1.4.0",
"@typescript-eslint/parser": "^1.4.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-typescript": "^1.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "^4.1.0",
"terser-webpack-plugin": "^4.2.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}