-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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": "be-type",
"version": "1.0.2",
"description": "be-type is based on ECMAScript2015+ proxy feature",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"test:cover:travis": "npm run test:cover && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/be-type.git"
},
"keywords": [
"type",
"check"
],
"author": "unadlib",
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/be-type/issues"
},
"homepage": "https://github.com/unadlib/be-type#readme",
"dependencies": {},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-function-bind"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babelrc-rollup": "^3.0.0",
"coveralls": "^2.13.1",
"jest": "^21.1.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0"
}
}