-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 KB
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
71
72
73
74
{
"name": "cloud-token-sdk",
"version": "5.1.0",
"description": "ccms fe sdk written by es2015+",
"main": "./index.js",
"scripts": {
"build": "rm -fr lib && NODE_ENV=production babel src --out-dir lib --ignore **/__tests__,shell.js,shell-jq.js & webpack --config webpack-build.config.js && cp -R es5 lib && cp package.json lib/package.json",
"codecheck": "NODE_EVN=test eslint src",
"prepush": "npm test",
"test": "npm run codecheck & npm run cover",
"unit": "karma start ./test/karma.unit.conf.js --single-run",
"cover": "karma start ./test/karma.cover.conf.js",
"pub": "npm test && npm run build && npm publish lib && cnpm sync ccms-sdk",
"start": "karma start ./test/karma.unit.conf.js"
},
"author": "shuyun ff2e",
"homepage": "https://github.com/ShuyunFF2E/ccms-sdk",
"devDependencies": {
"angular-mocks": "^1.5.3",
"axios": "^0.16.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.10",
"codecov": "^1.0.1",
"eslint": "^2.10.2",
"eslint-friendly-formatter": "^1.2.2",
"eslint-loader": "^1.1.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^1.3.1",
"husky": "^0.10.1",
"istanbul-instrumenter-loader": "^0.2.0",
"jquery": "^3.2.1",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"moxios": "^0.4.0",
"sinon": "^2.0.0-pre",
"webpack": "^1.13.0"
},
"peerDependencies": {
"jquery": "*"
},
"dependencies": {
"angular": "^1.5.3",
"angular-es-utils": "^2.0.0",
"js-cookie": "^2.1.3"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShuyunFF2E/ccms-sdk.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ShuyunFF2E/ccms-sdk/issues"
}
}