-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.88 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.88 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
{
"name": "@allocloud/js-sdk",
"version": "1.0.0",
"description": "An isomorphic/universal promise based interface to the ALLOcloud API",
"license": "MIT",
"repository": "https://github.com/allocloud/allocloud-js-sdk",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "jest",
"test:format": "prettier --list-different --single-quote --trailing-comma none --write src/**/*.js",
"format": "prettier --single-quote --trailing-comma none --write src/**/*.js",
"ci": "npm run lint && npm run test && npm run build",
"docs:generate": "typedoc --disableOutputCheck --out docs src/index.ts",
"docs:deploy": "gh-pages -d docs"
},
"devDependencies": {
"@types/node": "^10.11.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"benchmark": "^2.1.4",
"bluebird": "^3.5.4",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^2.3.1",
"jest": "^21.2.0",
"prettier": "^1.16.4",
"save": "^2.3.3",
"typescript": "^3.4.5",
"semantic-release": "^15.13.12",
"typedoc": "^0.14.2",
"gh-pages": "^2.0.1"
},
"dependencies": {
"cross-fetch": "^3.0.2",
"universal-url": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"(<rootDir>/__tests__/.*|(\\.|/)utils)\\.jsx?$"
]
}
}