-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "@braveulysses/scim2",
"version": "0.1.3",
"description": "Simple SCIM 2 for JavaScript",
"main": "./dist/index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"build-docs": "documentation build 'src/**' --shallow --sort-order alpha --format md --output API.md",
"prepublish": "npm run build",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage"
},
"keywords": [
"identity",
"scim",
"scim2"
],
"author": "Jacob Childress <jacobc@gmail.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/braveulysses/scim2-js",
"repository": {
"type": "git",
"url": "https://github.com/braveulysses/scim2-js.git"
},
"bugs": {
"url": "https://github.com/braveulysses/scim2-js/issues"
},
"devDependencies": {
"babel-cli": "6",
"babel-jest": "^18.0.0",
"babel-preset-es2015": "6",
"documentation": "^4.0.0-beta.18",
"jest": "^18.1.0"
},
"dependencies": {
"object-path": "^0.11.3",
"strscan": "^1.0.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|docs|node_modules)[/\\\\]"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js)$"
]
},
"babel": {
"presets": [
"es2015"
]
}
}