-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.43 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
68
69
70
{
"name": "@smartface/contx",
"version": "4.1.0",
"description": "Context Manager",
"scripts": {
"test": "mocha --compilers js:babel-core/register --debug ./test/**/*.test.js",
"test:watch": "mocha --watch --compilers js:babel-core/register --debug ./test/**/*.test.js",
"build:dev": "BABEL_ENV=development babel ./src/ --out-dir -d ../scripts/node_modules/@smartface/contx",
"build": "rm -R -f ./lib && tsc && rsync -a -m --include '*/' --include '*.d.ts' --exclude '*' ./src/ ./lib",
"dev:sync": "mkdir -p ../scripts/node_modules/@smartface/contx && cp -r -t ../scripts/node_modules/@smartface/contx lib package.json",
"dev:remove": "rm -R -f ../scripts/node_modules/@smartface/contx & rm -R -f ./lib",
"dev:link": "npm run dev:remove && BABEL_ENV=development && tsc && npm run dev:sync",
"docs": "jsdoc2md -c .jsdoc.json --no-cache --files src/core/Actor.js --namepaths",
"docs:clean": "rimraf _book",
"docs:publish": "gh-pages --dist _book"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartface/contxjs.git"
},
"keywords": [
"javascript",
"context management"
],
"author": "Cenk Cetinkaya",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartface/contxjs/issues"
},
"homepage": "https://github.com/smartface/contxjs#readme",
"devDependencies": {
"@babel/cli": "7.0.0-beta.54",
"@babel/core": "7.0.0-beta.54",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.54",
"@babel/preset-env": "7.0.0-beta.54",
"@babel/preset-stage-0": "7.0.0-beta.54",
"babel-plugin-add-module-exports": "^0.2.1",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"cross-env": "^4.0.0",
"cz-conventional-changelog": "^2.0.0",
"cz-customizable": "^5.0.0",
"eslint": "^4.18.2",
"eslint-plugin-react": "^6.10.3",
"gitbook-cli": "^2.3.2",
"jase": "^1.2.0",
"jsdoc": "^3.6.7",
"jsdoc-babel": "^0.3.0",
"jsdoc-to-markdown": "^3.0.2",
"minimist": "^1.2.0",
"mocha": "^3.3.0",
"semver": "^5.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@smartface/html-to-text": "^1.0.0",
"@smartface/styler": "^2.0.0",
"filtrex": "^0.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"path": "./node_modules/cz-conventional-changelog",
"config": "./.cz-config.js"
}
}
}