-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@app-masters/js-lib",
"version": "1.2.23",
"description": "JS lib",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"clean": "rm -rf dist/ && rm -rf node_modules",
"build": "babel src/ -d dist/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/app-masters/js-lib.git"
},
"keywords": [
"Js",
"lib"
],
"author": "AppMasters",
"license": "ISC",
"bugs": {
"url": "https://github.com/app-masters/js-lib/issues"
},
"homepage": "https://github.com/app-masters/js-lib#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-classes": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^21.2.1",
"nock": "^9.0.27",
"node-fetch": "^1.7.3"
},
"peerDependencies": {
"moment": "*"
},
"jest": {
"globals": {
"__DEV__": true
}
}
}