This repository was archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@boldr/utils",
"version": "0.1.2",
"description": "Utility functions designed for use in Boldr projects. But applicable to most.",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"build",
"tools",
"webpack"
],
"author": {
"name": "Steven Truesdell",
"email": "steven@strues.io",
"url": "strues.io"
},
"homepage": "https://github.com/strues/boldr#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/strues/boldr.git"
},
"bugs": {
"url": "https://github.com/strues/boldr/issues"
},
"scripts": {
"build": "npm run compile",
"clean": "rimraf lib",
"compile": "NODE_ENV=production babel src --ignore *.test.js --out-dir lib",
"prebuild": "npm run clean",
"test": "jest",
"test:ci": "NODE_ENV=test jest --ci --no-cache"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "21.2.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "^1.6.1",
"rimraf": "^2.6.2",
"jest": "21.2.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
]
}
}