-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "cross-dom",
"description": "A dom manipulation library, written in functional style.",
"keywords": [
"dom",
"jquery",
"fp",
"functional"
],
"version": "0.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"clean": "rm -rf lib",
"bench": "node benchmark/bench.js",
"build": "npm run index && npm run clean && babel src --out-dir lib --ignore src/*.test.js",
"test": "tape src/*.test.js -r @babel/register -r ./browser-env | tap-summary",
"test-w": "tape-watch src/*.test.js -r @babel/register -r ../browser-env | tap-summary",
"test-b": "airtap src/*.test.js --local",
"index": "create-index -i -u src && eslint --fix src/index.js"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"airtap": "^2.0.3",
"babelify": "^10.0.0",
"browser-env": "^3.2.6",
"create-index": "https://github.com/cross-code/create-index.git",
"eslint": "^6.0.1",
"eslint-config-byungi": "^0.3.0",
"nanobench": "^2.1.1",
"tap-summary": "^4.0.0",
"tape": "^4.10.2",
"tape-watch": "^2.3.0"
},
"dependencies": {
"@babel/runtime": "^7.4.5"
}
}