This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.82 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
{
"name": "mobius-string",
"license": "MIT",
"version": "0.0.9",
"author": "Patrick Janssen",
"description": "Mobius library that provides string functions.",
"homepage": "https://github.com/design-automation/mobius-string#readme",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build2015": "tsc && babel --presets es2015 ./dist --out-dir ./dist2015",
"prepare": "npm run build",
"build": "tsc",
"test": "karma start ./karma.conf.ts",
"testsr": "karma start ./karma.conf.ts --single-run",
"docs": "typedoc --out ./docs --json ./docs_json/mobius-string.json ./src/typescript --module commonjs --exclude \"**/*+(dev|tests).ts\" --mode modules --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/design-automation/mobius-string.git"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"@types/node": "^9.6.23",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"jasmine": "^2.99.0",
"jasmine-core": "^2.99.1",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-typescript": "^3.0.13",
"karma-typescript-es6-transform": "^1.0.4",
"karma-typescript-preprocessor": "^0.3.1",
"tslint": "^5.11.0",
"typedoc": "^0.9.0",
"typescript": "^2.9.2"
},
"bugs": {
"url": "https://github.com/design-automation/mobius-string/issues"
},
"keywords": [
"array"
]
}