-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "@syr/core",
"version": "1.7.2",
"description": "minimal react api, that leans toward native SDK developers",
"main": "index.js",
"public": true,
"scripts": {
"test": "nyc mocha --compilers js:babel-core/register test/*test.js",
"test:jsx": "mocha --compilers js:babel-core/register test/jsxtest.js",
"test:nodom": "mocha --compilers js:babel-core/register test/nodomtest.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run pretty; webpack",
"pretty": "prettier --single-quote --trailing-comma es5 --write \"lib/**/*.js\" \"samples/**/*.js\" \"test/**/*.js\";",
"serve": "webpack-dev-server --config webpack.config.js --content-base build/"
},
"repository": {
"type": "git",
"url": "[email protected]:syrjs/core.git"
},
"config": {
"travis-cov": {
"threshold": 0
}
},
"prettier": {
"singleQuote": true
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"coveralls": "^2.13.1",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^2.29.0",
"html-webpack-template": "^6.1.0",
"jsdom": "^11.5.1",
"json-loader": "^0.5.4",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.1.0",
"prettier": "^1.5.3",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.11"
},
"dependencies": {
"@syr/jsx": "^1.2.1"
},
"syr": {
"ios": {
"project": "ios/SyrNative/SyrNative.xcodeproj"
}
}
}