This repository has been archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
{
"name": "weapp-next",
"version": "0.3.0",
"apiVersion": "1.1.0",
"description": "Weapp(微信小程序) official API wrapper, purpose to expose fashionable, friendly and fluent programming API.",
"main": "dist/index.js",
"scripts": {
"pretest": "eslint es6",
"test": "jest --coverage",
"build": "npm test && rimraf dist/* && webpack --progress --colors --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/xixilive/weapp-next.git"
},
"keywords": [
"wechat",
"wexin",
"微信小程序",
"weapp",
"es6",
"es-next"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/xixilive/weapp-next/issues"
},
"homepage": "https://github.com/xixilive/weapp-next#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"core-js": "^2.4.1",
"eslint": "^3.12.2",
"jest-cli": "^18.0.0",
"rimraf": "^2.5.4",
"webpack": "^1.14.0"
},
"jest": {
"automock": false,
"bail": true,
"transform": {
".js": "<rootDir>/node_modules/babel-jest"
},
"testPathDirs": [
"<rootDir>/__tests__/"
],
"unmockedModulePathPatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}