forked from abe33/widjet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.21 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "widjet",
"version": "1.4.0",
"description": "A simple and lightweight widget helper for the web",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "nyc mocha --timeout 5000 --recursive test/**/*.js test/*.js",
"lcov_report": "nyc report --reporter=lcov",
"coverage": "npm run lcov_report && codecov",
"babel": "babel src --out-dir lib",
"lint": "eslint src/*.js test/*.js",
"lint:fix": "eslint --fix src/*.js test/*.js",
"esdoc": "esdoc -c esdoc.json",
"prepublishOnly": "npm run babel",
"start": "widjet-test-server test/**/*.js"
},
"keywords": [
"widgets",
"widget",
"web",
"widjet"
],
"repository": {
"type": "git",
"url": "git://github.com/abe33/widjet.git"
},
"bugs": "http://github.com/abe33/widjet/issues",
"commits": "http://github.com/abe33/widjet/commits",
"author": "Cédric Néhémie <cedric.nehemie@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.3",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.0",
"codecov": "^1.0.0",
"esdoc": "^1.1.0",
"eslint": "^4.12.1",
"eslint-config": "^0.3.0",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^5.2.2",
"expect.js": "^0.3.1",
"fbjs": "^0.8.6",
"mocha": "^6.1.4",
"mocha-jsdom": "^2.0.0",
"nyc": "^14.1.1",
"sinon": "^1.17.7",
"widjet-test-utils": "^1.11"
},
"dependencies": {
"widjet-disposables": "^1.1.0",
"widjet-utils": "^1.2.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"describe",
"beforeEach",
"afterEach"
]
},
"babel": {
"sourceMaps": "inline",
"presets": [
"@babel/preset-env"
],
"plugins": [],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"include": [
"src/*.js"
],
"extension": [
".js"
],
"require": [
"@babel/register"
]
}
}