-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jslib",
"version": "0.1.16",
"publishConfig": {
"tag": "next"
},
"description": "A collection of utility functions for TS/JS projects",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"typescript": {
"definition": "./lib/index.d.ts"
},
"files": [
"LICENSE",
"lib"
],
"scripts": {
"clean": "npm cache clean && rimraf node_modules doc typings coverage dist",
"clean:dist": "rimraf lib dist coverage",
"lint": "./node_modules/.bin/tslint 'src/**/*.ts'",
"pretest": "tsc",
"test": "mocha --reporter dot dist/test/**/*.spec.js",
"build": "tsc -d",
"prebuild": "npm run clean:dist",
"watch": "npm run watch:test",
"watch:test": "npm test -- --watch --watch-extensions ts --bail",
"docs": "npm run docs:clean && npm run docs:build",
"docs:clean": "rimraf doc",
"docs:build": "typedoc --out docs --options typedoc.json --exclude '**/*.spec.ts' ./src/",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME docs && cd docs && git init && git commit --allow-empty -m 'update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update docs' && git push [email protected]:zhenwenc/jslib gh-pages --force",
"prepublish": "npm run build && babel dist/src -s --presets babel-preset-es2015 --out-dir lib && rsync -avm --include='*.d.ts' -f 'hide,! */' dist/src/ lib && cp typings-ext.d.ts lib",
"publishLocal": "npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/zhenwenc/jslib.git"
},
"keywords": [
"typescript",
"functional",
"immutable"
],
"author": "Zhenwen Cai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhenwenc/jslib/issues"
},
"homepage": "https://zhenwenc.github.io/jslib/",
"devDependencies": {
"@types/chai": "^3.4.29",
"@types/lodash": "4.14.61",
"@types/mocha": "^2.2.28",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"mocha": "^3.2.0",
"rimraf": "^2.6.1",
"should": "^11.2.1",
"ts-node": "^3.0.2",
"tslint": "^5.0.0",
"typedoc": "^0.5.9",
"typescript": "^2.2.2"
}
}