-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.78 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
{
"name": "bukk",
"description": "Functional programming for Norwegians ⛷️",
"keywords": [
"functional-programming",
"fp",
"curry",
"data-last",
"library"
],
"version": "1.1.2",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/bukk.js",
"repository": "christianhg/bukk",
"author": {
"name": "Christian Grøngaard",
"email": "[email protected]"
},
"scripts": {
"prepublish": "npm run build",
"preprebuild": "rm -rf dist",
"prebuild": "npm run test",
"build": "webpack -p",
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc ava",
"report": "nyc report --reporter=lcov && open ./coverage/lcov-report/index.html",
"predev": "npm run lint",
"dev": "ava --watch"
},
"ava": {
"files": "tests/*.js",
"require": [
"babel-register"
]
},
"nyc": {
"include": [
"src/*.js"
],
"instrument": false,
"require": [
"babel-register"
],
"sourceMap": false
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"plugins": [
"babel-plugin-add-module-exports",
"transform-object-rest-spread"
],
"presets": [
"es2015"
]
},
"standard": {
"ignore": [
"dist"
]
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"nyc": "^11.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"webpack": "^3.0.0"
}
}