-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.7 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
{
"name": "popweasel",
"version": "0.1.20",
"description": "Collection of UI elements that behave as popovers",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"build": "tsc",
"test": "MOCHA_WEBDRIVER_STACKTRACES=1 mocha 'test/browser/**/*.{js,ts}'",
"test-debug": "NODE_OPTIONS=--openssl-legacy-provider MOCHA_WEBDRIVER_STACKTRACES=1 mocha --bail test/browser/**/*.{js,ts} --no-exit",
"test-manual": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config test/fixtures/webpack.config.js",
"prepack": "npm run build && npm test"
},
"files": [
"dist",
"lib",
"index.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gristlabs/weasel.js.git"
},
"author": "Grist Labs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gristlabs/weasel.js/issues"
},
"homepage": "https://github.com/gristlabs/weasel.js#readme",
"peerDependencies": {
"grainjs": "^1.0.1"
},
"dependencies": {
"lodash": "^4.17.15",
"popper.js": "1.15.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.8",
"@types/selenium-webdriver": "^4.0.0",
"@types/webpack-dev-server": "^3.1.5",
"cache-loader": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^1.2.0",
"grainjs": "^1.0.1",
"mocha": "6.1.4",
"mocha-webdriver": "^0.2.0",
"ts-loader": "^5.4.4",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "3.4.5",
"typescript-tslint-plugin": "^0.3.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}