-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "observable-ajax",
"version": "1.0.0",
"description": "this is a ajax with observer design pattern",
"main": "index.js",
"npm-script-info":{
"test":"用npm run --silent test 隐藏来自npm的报错"
},
"scripts": {
"test": "mocha ./test/test.js",
"build_global": "tsc && mkdirp ./dist/global && node ./tools/make-umd-bundle.js && node ./tools/make-closure-core.js",
"build_cjs": "tsc -m commonjs --outDir ./dist/cjs/",
"clean_dist": "shx rm -rf ./dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walker27/observableAjax.git"
},
"keywords": [
"ajax",
"observable"
],
"author": "walker27",
"license": "ISC",
"bugs": {
"url": "https://github.com/walker27/observableAjax/issues"
},
"homepage": "https://github.com/walker27/observableAjax#readme",
"devDependencies": {
"chai": "^3.5.0",
"google-closure-compiler-js": "^20161024.0.0",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"shx": "^0.2.1"
},
"dependencies": {}
}