forked from baidu/san
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "san",
"description": "A Flexible JavaScript Component Framework",
"version": "3.5.6",
"contributors": [
{
"name": "erik",
"email": "[email protected]"
},
{
"name": "Otakustay",
"email": "[email protected]"
},
{
"name": "Junmer",
"email": "[email protected]"
},
{
"name": "Leon",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/baidu/san.git"
},
"scripts": {
"dev": "node ./tool/dev.js",
"dev:unit": "./node_modules/karma/bin/karma start ./test/karma.conf.js start",
"pretest": "npm run build && node ./test/ssr/build-test.js",
"test": "npm run test:unit",
"test:unit": "./node_modules/karma/bin/karma start ./test/karma.conf.js --single-run",
"test:coverage": "./node_modules/karma/bin/karma start ./test/karma.conf.js --single-run --coverage",
"test:e2e": "node ./test/e2e/wdio-launcher.js",
"test:sauce": "npm run test:e2e -- modern && npm run test:e2e -- ie_family && npm run test:e2e -- mobile",
"test:types": "tsc -p ./types/test/tsconfig.json",
"build": "node ./tool/build.js"
},
"types": "types",
"main": "dist/san.ssr.js",
"browser": "dist/san.dev.js",
"unpkg": "dist/san.min.js",
"files": [
"src",
"dist",
"types/*.d.ts",
"types/*.json"
],
"license": "MIT",
"devDependencies": {
"opener": "~1.4.0",
"colors": "^1.0.3",
"watch": "^1.0.2",
"http-server": "^0.9.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"wdio-jasmine-framework": "^0.3.0",
"wdio-sauce-service": "^0.3.1",
"wdio-spec-reporter": "^0.1.0",
"webdriverio": "^4.2.16",
"uglify-js": "^2.8.22",
"swig": "^1.4.2",
"art-template": "^4.10.2"
}
}