-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "@foamfactory/taphandle",
"version": "1.7.0-alpha",
"description": "A behavior-based event delegation library designed for FoamFactory",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"build:web": "yarn build && browserify --s taphandle lib/index.js > lib/index-web.js",
"build:all": "yarn build && yarn build:web",
"clean": "rimraf lib",
"test": "jest --useStderr --verbose",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"browserify": "^16.5.0",
"bulma": "^0.8.1",
"bulmaswatch": "^0.8.0",
"font-awesome": "^4.7.0",
"jest": "^25.2.4",
"jsdom": "^15.2.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.15",
"rimraf": "^3.0.2",
"sinon": "^9.0.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@foamfactory/paulrevere": "1.0.1",
"jquery": "^3.5.0",
"receptor": "^1.0.0",
"resolve-id-refs": "^0.1.0"
}
}