-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
{
"name": "tydel",
"version": "0.7.3",
"description": "Typed Models and Collections",
"main": "index.js",
"scripts": {
"lint": "eslint src/**/*.js test/**/*.js",
"test": "mocha",
"cover": "nyc --require babel-register mocha",
"transpile": "babel src --out-dir lib",
"dist:lib": "webpack --config ./dist/webpack.config.js",
"dist:min": "uglifyjs dist/tydel.js --output dist/tydel.min.js",
"dist": "npm run dist:lib && npm run dist:min",
"docs:clean": "rimraf _docpress",
"docs:serve": "docpress serve",
"docs:build": "docpress build",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME ./_docpress/CNAME && cd _docpress && 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]:fahad19/tydel gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/fahad19/tydel.git"
},
"keywords": [
"data",
"structure",
"typed",
"model",
"collection"
],
"homepage": "https://fahad19.github.io/tydel",
"author": {
"name": "Fahad Ibnay Heylaal",
"url": "https://github.com/fahad19"
},
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"docpress": "^0.6.12",
"eslint": "^3.0.1",
"mocha": "^2.5.3",
"nyc": "^7.0.0",
"rimraf": "^2.5.4",
"uglify-js": "^2.7.0",
"webpack": "^1.13.1"
},
"dependencies": {
"lodash": "^4.13.1"
}
}