This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "snabbdom-helpers",
"version": "7.2.0",
"description": "Individual HTML helper functions for the snabbdom library",
"keywords": [
"snabbdom",
"dom",
"helpers",
"elements"
],
"contributors": [
{
"name": "Kurtis Rainbolt-Greene",
"email": "[email protected]",
"url": "https://kurtis.rainbolt-greene.online"
}
],
"license": "ISC",
"homepage": "https://github.com/krainboltgreene/snabbdom-helpers#readme",
"repository": "github:krainboltgreene/snabbdom-helpers",
"bugs": "https://github.com/krainboltgreene/snabbdom-helpers/issues",
"main": "transpiled/index.js",
"files": [
"transpiled/"
],
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test tap --jobs-auto --100 './source/**/test.js'",
"build": "babel './source/' -d './transpiled/'",
"lint": "eslint './source/'",
"check": "flow check",
"ci": "npm run test && npm run lint && npm run check",
"watch": "chokidar './source/' --command 'npm run ci --silent'"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-plugin-istanbul": "4.1.6",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-flow": "6.23.0",
"chokidar-cli": "1.2.0",
"eslint": "4.19.1",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-immutable": "1.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-promise": "3.7.0",
"flow": "0.2.3",
"flow-bin": "0.72.0",
"flow-typed": "2.4.0",
"nyc": "11.7.3",
"snabbdom-to-html": "5.1.0",
"tap": "11.1.5"
},
"dependencies": {
"@unction/compact": "3.0.0",
"@unction/flattentree": "13.0.0",
"@unction/istype": "4.0.0",
"@unction/mapkeys": "9.0.0",
"@unction/reducewithvaluekey": "10.1.0",
"ramda": "0.25.0",
"snabbdom": "0.7.1"
}
}