-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.48 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
58
59
60
61
62
63
64
{
"name": "@novivia/utilities",
"role": "utilities",
"version": "0.2.0",
"engines": {
"node": ">=4.5",
"npm": ">=3"
},
"license": "SEE LICENSE IN LICENSE.md",
"description": "Novivia general utilities.",
"authors": [
"Mathieu M-Gosselin <mathieumg@novivia.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:Novivia/modules.utilities.git"
},
"main": "index.js",
"novivia-babel": {
"babelConfiguration": {
"includeLegacyDecorators": false
}
},
"novivia-builder": {
"babelPatterns": [
"**/*.js"
],
"compileTargets": {
"uglify": true
}
},
"scripts": {
"build": "novivia-builder build",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint": "novivia-linter lint .",
"pub": "novivia-builder publish",
"release": "novivia-builder release",
"test": "novivia-tester"
},
"peerDependencies": {
"react": "^15.4.0",
"react-addons-create-fragment": "^15.4.0"
},
"devDependencies": {
"@novivia/build-module": "^0.5.3",
"@novivia/linter": "^1.10.1",
"@novivia/tester": "^1.2.0",
"flow-bin": "^0.45.0",
"semver": "^5.3.0"
},
"dependencies": {
"base-x": "^3.0.0",
"common-tags": "^1.4.0",
"html-entities": "^1.2.1",
"lodash": "^4.17.4",
"path-to-regexp": "^1.7.0",
"sanitize-html": "^1.14.1",
"stack-utils": "^1.0.1",
"stacktrace-parser": "^0.1.4",
"uuid": "^3.0.1",
"uuid-validate": "0.0.2",
"verror": "^1.9.0"
}
}